看以下代码

 import java.awt.Color;
 import java.awt.Font;
 import java.nio.charset.Charset;
 import java.text.DecimalFormat;
 import java.util.ArrayList;
 import java.util.Enumeration;
 import java.util.Iterator;
 import java.util.Properties;
 import javax.swing.Icon;
 import javax.swing.UIManager;
 import javax.swing.border.Border;

 public class PrintProperties {

    public static void main(String[] args) {
        PrintProperties printProperties = new PrintProperties();
    }

    public PrintProperties() {
        System.out.println("\n------------------printProperties Start------------------\n");

        // UIManager Keys
         Enumeration e = UIManager.getLookAndFeelDefaults().keys();
        ArrayList listFont = new ArrayList();
        ArrayList listIcon = new ArrayList();
        ArrayList listColor = new ArrayList();
        ArrayList listBorder = new ArrayList();
        ArrayList listElse = new ArrayList();

        while (e.hasMoreElements()) {
            Object key = e.nextElement();
            if (UIManager.get(key) instanceof Font) {
                listFont.add(key);
            } else if (UIManager.get(key) instanceof Icon) {
                listIcon.add(key);
            } else if (UIManager.get(key) instanceof Color) {
                listColor.add(key);
            } else if (UIManager.get(key) instanceof Border) {
                listBorder.add(key);
            } else {
                listElse.add(key);
            }
        }

        System.out.println("\n\n-----------------------Font-----------------------\n");
        printArrayList(listFont);

        System.out.println("\n\n-----------------------Icon-----------------------\n");
        printArrayList(listIcon);

        System.out.println("\n\n-----------------------Color-----------------------\n");
        printArrayList(listColor);

        System.out.println("\n\n-----------------------Border-----------------------\n");
        printArrayList(listBorder);

        System.out.println("\n\n\n-----------------------Else-----------------------\n");
        printArrayList(listElse);

        // 系统属性
         System.out.println("\n\n\n\n\n\n\n\n\n系统属性");
        Properties property = System.getProperties();
        Enumeration keys = property.keys();
        int i = 0;
        DecimalFormat df = new DecimalFormat("Key0000");
        while (keys.hasMoreElements()) {
            i++;
            String key = (String) keys.nextElement();
            System.out.println(df.format(i) + ":" + key + " -> " + System.getProperty(key));
        }

        // 本机支持的全部编码集名字
         System.out.println("\n\n\n\n\n\n\n\n\n本机支持的全部编码集名字");
        Iterator iterator = Charset.availableCharsets().keySet().iterator();
        while (iterator.hasNext()) {
            System.out.println(iterator.next());
        }

        System.out.println("\n------------------printProperties End------------------\n");
    }

    private void printArrayList(ArrayList list) {
        if (list == null) {
            return;
        }
        for (int i = 0; i < list.size(); i++) {
            System.out.println(list.get(i));
        }
    }
}

运行结果

——————printProperties Start——————

 

———————–Font———————–

List.font
TableHeader.font
Panel.font
TextArea.font
ToggleButton.font
ComboBox.font
ScrollPane.font
Spinner.font
RadioButtonMenuItem.font
Slider.font
EditorPane.font
OptionPane.font
ToolBar.font
Tree.font
CheckBoxMenuItem.font
TitledBorder.font
Table.font
MenuBar.font
PopupMenu.font
DesktopIcon.font
Label.font
MenuItem.font
MenuItem.acceleratorFont
TextField.font
TextPane.font
CheckBox.font
ProgressBar.font
FormattedTextField.font
CheckBoxMenuItem.acceleratorFont
Menu.acceleratorFont
ColorChooser.font
Menu.font
PasswordField.font
InternalFrame.titleFont
RadioButtonMenuItem.acceleratorFont
Viewport.font
TabbedPane.font
RadioButton.font
ToolTip.font
Button.font
———————–Icon———————–

FileChooser.upFolderIcon
FileChooser.newFolderIcon
InternalFrame.iconifyIcon
OptionPane.questionIcon
RadioButton.icon
FileView.fileIcon
OptionPane.informationIcon
RadioButtonMenuItem.checkIcon
FileView.floppyDriveIcon
Slider.verticalThumbIcon
InternalFrame.closeIcon
OptionPane.errorIcon
CheckBoxMenuItem.arrowIcon
Tree.closedIcon
InternalFrame.minimizeIcon
FileChooser.homeFolderIcon
FileView.computerIcon
html.pendingImage
Tree.leafIcon
InternalFrame.paletteCloseIcon
Tree.openIcon
html.missingImage
FileView.hardDriveIcon
Tree.expandedIcon
FileView.directoryIcon
Table.descendingSortIcon
Tree.collapsedIcon
OptionPane.warningIcon
InternalFrame.maximizeIcon
InternalFrame.icon
FileChooser.listViewIcon
FileChooser.detailsViewIcon
Table.ascendingSortIcon
Slider.horizontalThumbIcon
CheckBoxMenuItem.checkIcon
RadioButtonMenuItem.arrowIcon
CheckBox.icon
Menu.arrowIcon
MenuItem.arrowIcon
———————–Color———————–

DesktopIcon.foreground
OptionPane.errorDialog.titlePane.foreground
TextArea.background
activeCaption
PasswordField.inactiveForeground
TabbedPane.focus
RadioButton.disabledText
TabbedPane.contentAreaColor
Table.dropCellBackground
MenuItem.acceleratorForeground
EditorPane.caretForeground
Table.background
Menu.selectionForeground
OptionPane.errorDialog.border.background
ToolBar.floatingBackground
RadioButtonMenuItem.selectionBackground
DesktopIcon.background
CheckBoxMenuItem.selectionForeground
List.dropLineColor
TabbedPane.unselectedBackground
InternalFrame.borderColor
CheckBox.foreground
ProgressBar.foreground
ComboBox.disabledForeground
textInactiveText
OptionPane.warningDialog.titlePane.foreground
Slider.highlight
FormattedTextField.caretForeground
Menu.selectionBackground
TextField.caretForeground
OptionPane.messageForeground
RadioButton.highlight
ToolBar.shadow
CheckBoxMenuItem.selectionBackground
Menu.acceleratorForeground
Label.foreground
text
ComboBox.disabledBackground
Button.focus
inactiveCaptionText
MenuBar.background
PasswordField.selectionForeground
CheckBoxMenuItem.acceleratorSelectionForeground
controlShadow
menu
inactiveCaptionBorder
PasswordField.foreground
TextPane.foreground
TabbedPane.tabAreaBackground
Viewport.foreground
TabbedPane.foreground
ToggleButton.focus
RadioButton.foreground
infoText
TabbedPane.selected
MenuBar.highlight
ScrollBar.highlight
InternalFrame.inactiveTitleBackground
ScrollBar.thumbDarkShadow
ToolBar.light
EditorPane.inactiveForeground
OptionPane.errorDialog.titlePane.background
PasswordField.background
TextPane.background
RadioButton.select
PasswordField.inactiveBackground
Button.toolBarBorderBackground
MenuItem.foreground
TableHeader.focusCellBackground
RadioButton.background
ToolBar.borderColor
inactiveCaption
ScrollBar.trackHighlight
OptionPane.questionDialog.titlePane.foreground
Tree.textForeground
TableHeader.foreground
CheckBox.background
ProgressBar.background
Label.disabledForeground
OptionPane.warningDialog.titlePane.background
ToggleButton.highlight
ScrollPane.foreground
TextArea.caretForeground
Label.background
Spinner.foreground
Slider.tickColor
Tree.textBackground
InternalFrame.borderLight
textHighlightText
Separator.shadow
CheckBoxMenuItem.disabledForeground
controlText
InternalFrame.borderDarkShadow
TextField.shadow
PasswordField.selectionBackground
Spinner.background
TabbedPane.shadow
desktop
Tree.dropLineColor
OptionPane.questionDialog.titlePane.shadow
TabbedPane.darkShadow
Viewport.background
CheckBox.disabledText
ComboBox.foreground
RadioButton.darkShadow
TabbedPane.background
OptionPane.warningDialog.titlePane.shadow
activeCaptionBorder
InternalFrame.borderShadow
MenuItem.selectionForeground
TextArea.selectionForeground
MenuItem.background
ComboBox.buttonShadow
ScrollBar.track
ScrollBar.thumb
MenuItem.acceleratorSelectionForeground
Table.dropLineColor
control
OptionPane.questionDialog.titlePane.background
Panel.foreground
TabbedPane.light
MenuItem.selectionBackground
Label.disabledShadow
ToolTip.foreground
TableHeader.background
EditorPane.selectionForeground
List.foreground
OptionPane.warningDialog.border.background
Desktop.background
ScrollPane.background
activeCaptionText
SplitPane.dividerFocusColor
Tree.foreground
SplitPane.highlight
TextField.foreground
ScrollBar.thumbShadow
TextArea.inactiveForeground
ToolTip.foregroundInactive
Tree.hash
FormattedTextField.selectionForeground
textText
RadioButton.focus
ToggleButton.disabledText
Tree.background
RadioButtonMenuItem.disabledForeground
TextField.background
ColorChooser.foreground
Button.light
Button.disabledToolBarBorderBackground
ColorChooser.swatchesDefaultRecentColor
ComboBox.background
Button.shadow
Button.foreground
Table.focusCellForeground
Table.gridColor
PasswordField.caretForeground
TextPane.selectionForeground
menuText
SplitPaneDivider.draggingColor
InternalFrame.borderHighlight
TextArea.selectionBackground
ToggleButton.light
controlDkShadow
TextField.light
Button.background
TextField.selectionForeground
Separator.foreground
ToolBar.dockingForeground
TextPane.selectionBackground
Panel.background
ToolTip.background
EditorPane.selectionBackground
List.background
TextPane.inactiveForeground
SplitPane.shadow
TextField.selectionBackground
Menu.disabledForeground
ToolBar.dockingBackground
List.selectionForeground
TextField.inactiveForeground
window
TextField.darkShadow
Tree.dropCellBackground
OptionPane.errorDialog.titlePane.shadow
TabbedPane.borderHightlightColor
RadioButtonMenuItem.acceleratorSelectionForeground
ComboBox.selectionForeground
FormattedTextField.selectionBackground
Tree.selectionBorderColor
Tree.selectionForeground
Slider.foreground
TabbedPane.selectHighlight
MenuBar.borderColor
ScrollBar.thumbHighlight
TextField.highlight
TextField.inactiveBackground
MenuBar.shadow
TextPane.caretForeground
Table.selectionForeground
ColorChooser.background
ToggleButton.shadow
Button.darkShadow
ComboBox.buttonDarkShadow
Table.focusCellBackground
ComboBox.buttonBackground
ToggleButton.foreground
Tree.line
windowText
FormattedTextField.inactiveForeground
scrollbar
controlLtHighlight
SplitPane.darkShadow
Button.select
ScrollBar.shadow
SplitPane.background
controlHighlight
Separator.background
CheckBoxMenuItem.foreground
FormattedTextField.inactiveBackground
FormattedTextField.foreground
textHighlight
Button.highlight
Table.sortIconColor
CheckBoxMenuItem.background
List.selectionBackground
TitledBorder.titleColor
ProgressBar.selectionForeground
Table.dropLineShortColor
EditorPane.foreground
MenuItem.disabledForeground
CheckBox.focus
Slider.focus
ComboBox.selectionBackground
InternalFrame.activeTitleForeground
Tree.selectionBackground
Slider.background
TextArea.foreground
ComboBox.buttonHighlight
Separator.highlight
PopupMenu.foreground
ProgressBar.selectionBackground
ScrollBar.foreground
OptionPane.foreground
Table.selectionBackground
info
InternalFrame.activeTitleBackground
RadioButton.light
ToolBar.floatingForeground
RadioButtonMenuItem.selectionForeground
ToggleButton.darkShadow
windowBorder
ToggleButton.background
TabbedPane.highlight
ScrollBar.darkShadow
PopupMenu.background
Slider.altTrackColor
ScrollBar.background
Menu.acceleratorSelectionForeground
OptionPane.background
Checkbox.select
Menu.foreground
RadioButtonMenuItem.acceleratorForeground
ToolBar.foreground
ToolTip.backgroundInactive
RadioButtonMenuItem.foreground
ToggleButton.select
Slider.shadow
Button.disabledText
OptionPane.questionDialog.border.background
FormattedTextField.background
Menu.background
ToolBar.darkShadow
ToolBar.background
RadioButtonMenuItem.background
CheckBoxMenuItem.acceleratorForeground
MenuBar.foreground
ToolBar.highlight
RadioButton.shadow
List.dropCellBackground
EditorPane.background
Table.foreground
InternalFrame.inactiveTitleForeground
———————–Border———————–

RootPane.questionDialogBorder
RootPane.colorChooserDialogBorder
CheckBoxMenuItem.border
RootPane.plainDialogBorder
Spinner.arrowButtonBorder
RootPane.fileChooserDialogBorder
ToolTip.border
ToolBar.border
OptionPane.border
CheckBox.border
RootPane.informationDialogBorder
OptionPane.messageAreaBorder
Table.focusCellHighlightBorder
EditorPane.border
DesktopIcon.border
RadioButtonMenuItem.border
TextField.border
ToolTip.borderInactive
InternalFrame.border
RootPane.errorDialogBorder
InternalFrame.paletteBorder
ToolBar.nonrolloverBorder
PasswordField.border
Button.border
Spinner.border
SplitPane.border
Menu.border
MenuItem.border
OptionPane.buttonAreaBorder
List.focusCellHighlightBorder
ScrollPane.border
RootPane.warningDialogBorder
ToggleButton.border
PopupMenu.border
Table.scrollPaneBorder
InternalFrame.optionDialogBorder
FormattedTextField.border
TextArea.border
MenuBar.border
TableHeader.cellBorder
RootPane.frameBorder
TitledBorder.border
ToolBar.rolloverBorder
ProgressBar.border
Tree.editorBorder
RadioButton.border
SplitPaneDivider.border
TextPane.border

 

———————–Else———————–

TabbedPane.textIconGap
ButtonUI
FormattedTextField.margin
TabbedPane.contentOpaque
Spinner.ancestorInputMap
SplitPaneUI
Slider.horizontalSize
ProgressBar.cycleTime
ToggleButton.focusInputMap
Tree.focusInputMap.RightToLeft
PasswordField.echoChar
ToggleButton.margin
AuditoryCues.allAuditoryCues
Slider.minimumVerticalSize
InternalFrameUI
OptionPane.buttonClickThreshhold
OptionPane.windowBindings
MenuBar.gradient
RadioButtonMenuItemUI
InternalFrameTitlePane.maximizeButtonOpacity
FileChooser.ancestorInputMap
ScrollBar.minimumThumbSize
Tree.focusInputMap
InternalFrame.maximizeSound
ScrollBar.width
ProgressBar.repaintInterval
ScrollBar.gradient
RadioButtonUI
Tree.ancestorInputMap
ToolTip.hideAccelerator
RootPane.ancestorInputMap
Tree.changeSelectionWithFocus
PopupMenuSeparatorUI
ToggleButton.gradient
ScrollBar.ancestorInputMap
InternalFrame.restoreDownSound
ProgressBar.cellLength
TextArea.margin
CheckBoxMenuItem.gradient
RadioButton.textShiftOffset
Menu.submenuPopupOffsetY
ScrollPaneUI
Menu.submenuPopupOffsetX
CheckBoxMenuItem.commandSound
OptionPane.questionSound
CheckBox.totalInsets
RootPaneUI
FileChooserUI
ToolBarSeparatorUI
ScrollBar.allowsAbsolutePositioning
Menu.crossMenuMnemonic
Tree.leftChildIndent
LabelUI
SliderUI
Slider.focusInputMap.RightToLeft
Desktop.ancestorInputMap
InternalFrame.closeSound
FileChooser.usesSingleFilePane
TreeUI
TabbedPane.tabRunOverlay
ComboBox.isEnterSelectablePopup
OptionPane.warningSound
ScrollBarUI
Slider.gradient
RadioButton.margin
PopupMenu.popupSound
RadioButton.textIconGap
TabbedPane.ancestorInputMap
ToggleButtonUI
SplitPane.ancestorInputMap
TextPane.margin
OptionPane.minimumSize
PopupMenu.consumeEventOnClose
RadioButton.focusInputMap
TabbedPane.focusInputMap
CheckBoxMenuItem.margin
ViewportUI
TextField.caretBlinkRate
MenuItem.acceleratorDelimiter
TabbedPane.tabInsets
DesktopIcon.width
Button.focusInputMap
TextFieldUI
Tree.lineTypeDashed
DesktopIconUI
Menu.checkIcon
MenuItem.checkIcon
FileChooser.filesOfTypeLabelMnemonic
PasswordFieldUI
ColorChooser.swatchesRecentSwatchSize
ColorChooser.swatchesSwatchSize
PasswordField.focusInputMap
Spinner.editorBorderPainted
PopupMenu.selectedWindowInputMapBindings.RightToLeft
ComboBox.ancestorInputMap
ScrollBar.ancestorInputMap.RightToLeft
OptionPane.informationSound
Tree.timeFactor
CheckBoxMenuItemUI
SpinnerUI
TableHeaderUI
CheckBox.textShiftOffset
ProgressBar.verticalSize
MenuItem.commandSound
Slider.verticalSize
InternalFrame.restoreUpSound
TableUI
ComboBox.timeFactor
ScrollPane.ancestorInputMap
TableHeader.ancestorInputMap
Button.rollover
TextPane.focusInputMap
Button.defaultButtonFollowsFocus
TabbedPaneUI
SplitPane.oneTouchButtonsOpaque
ToggleButton.textShiftOffset
ProgressBar.cellSpacing
OptionPane.errorSound
Menu.opaque
DesktopPaneUI
FormattedTextFieldUI
CheckBox.textIconGap
CheckBox.margin
MenuItem.borderPainted
EditorPane.focusInputMap
CheckBoxUI
ListUI
ProgressBarUI
List.timeFactor
TabbedPane.contentBorderInsets
PasswordField.caretBlinkRate
Spinner.arrowButtonSize
Button.gradient
Slider.majorTickLength
TextField.focusInputMap
FormattedTextField.focusInputMap
PanelUI
SeparatorUI
EditorPane.margin
Slider.focusInsets
CheckBox.rollover
RadioButtonMenuItem.margin
Menu.menuPopupOffsetY
Menu.menuPopupOffsetX
ToggleButton.textIconGap
Slider.trackWidth
TextField.margin
ComboBoxUI
ScrollPane.ancestorInputMap.RightToLeft
Table.ancestorInputMap.RightToLeft
SplitPane.centerOneTouchButtons
AATextInfoPropertyKey
Tree.rightChildIndent
ToolTipUI
Tree.drawsFocusBorderAroundIcon
InternalFrame.minimizeSound
InternalFrameTitlePane.closeButtonOpacity
CheckBox.gradient
TabbedPane.tabsOverlapBorder
List.cellRenderer
FileChooser.lookInLabelMnemonic
Tree.paintLines
AuditoryCues.noAuditoryCues
RadioButtonMenuItem.gradient
Menu.borderPainted
ScrollBar.maximumThumbSize
Spinner.arrowButtonInsets
RootPane.defaultButtonWindowKeyBindings
FormattedTextField.caretBlinkRate
Menu.shortcutKeys
Button.textIconGap
TabbedPane.tabsOpaque
AuditoryCues.cueList
ToolBar.isRollover
InternalFrameTitlePane.iconifyButtonOpacity
TabbedPane.tabAreaInsets
OptionPaneUI
List.focusInputMap
Slider.focusInputMap
ProgressBar.horizontalSize
Tree.rowHeight
PopupMenu.selectedWindowInputMapBindings
FileChooser.useSystemExtensionHiding
ToolBar.separatorSize
PasswordField.margin
ToolBar.ancestorInputMap
MenuBarUI
List.focusInputMap.RightToLeft
FileChooser.fileNameLabelMnemonic
Button.rolloverIconType
FileChooser.readOnly
RadioButton.rollover
Table.ancestorInputMap
ColorChooserUI
ToolTipManager.enableToolTipMode
TextArea.focusInputMap
Button.textShiftOffset
TextArea.caretBlinkRate
Slider.focusGradient
Button.margin
CheckBox.focusInputMap
ToolBarUI
Desktop.minOnScreenInsets
AuditoryCues.defaultCueList
Tree.scrollsOnExpand
PopupMenuUI
MenuUI
MenuBar.windowBindings
CheckBoxMenuItem.borderPainted
RadioButton.gradient
TextPaneUI
EditorPaneUI
EditorPane.caretBlinkRate
Spinner.editorAlignment
TextAreaUI
MenuItemUI
InternalFrame.activeTitleGradient
RadioButtonMenuItem.commandSound
Menu.margin
RadioButton.totalInsets
Slider.minimumHorizontalSize
MenuItem.margin
RadioButtonMenuItem.borderPainted
InternalFrame.paletteTitleHeight
SplitPane.dividerSize
TabbedPane.selectedTabPadInsets
TextPane.caretBlinkRate

 

 

系统属性
Key0001:java.runtime.name -> Java(TM) SE Runtime Environment
Key0002:sun.boot.library.path -> C:\Program Files\Java\jdk1.6.0_10\jre\bin
Key0003:java.vm.version -> 11.0-b15
Key0004:java.vm.vendor -> Sun Microsystems Inc.
Key0005:java.vendor.url -> http://java.sun.com/
Key0006:path.separator -> ;
Key0007:java.vm.name -> Java HotSpot(TM) Client VM
Key0008:file.encoding.pkg -> sun.io
Key0009:sun.java.launcher -> SUN_STANDARD
Key0010:user.country -> CN
Key0011:sun.os.patch.level ->
Key0012:java.vm.specification.name -> Java Virtual Machine Specification
Key0013:user.dir -> D:\zyy\project\TestForRepax10
Key0014:java.runtime.version -> 1.6.0_10-rc2-b32
Key0015:java.awt.graphicsenv -> sun.awt.Win32GraphicsEnvironment
Key0016:java.endorsed.dirs -> C:\Program Files\Java\jdk1.6.0_10\jre\lib\endorsed
Key0017:os.arch -> x86
Key0018:java.io.tmpdir -> C:\Users\dell\AppData\Local\Temp\
Key0019:line.separator ->

 

Key0020:java.vm.specification.vendor -> Sun Microsystems Inc.
Key0021:user.variant ->
Key0022:os.name -> Windows Vista
Key0023:sun.jnu.encoding -> GBK
Key0024:java.library.path -> C:\Program Files\Java\jdk1.6.0_10\bin;.;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\WIDCOMM\Bluetooth Software\;C:\Program Files\Common Files\Thunder Network\KanKan\Codecs;d:\Program Files\jEdit;C:\Program Files\SinoVoice\jTTS 5.0 Desktop\Bin
Key0025:java.specification.name -> Java Platform API Specification
Key0026:java.class.version -> 50.0
Key0027:sun.management.compiler -> HotSpot Client Compiler
Key0028:os.version -> 6.1
Key0029:user.home -> C:\Users\dell
Key0030:user.timezone ->
Key0031:java.awt.printerjob -> sun.awt.windows.WPrinterJob
Key0032:file.encoding -> UTF-8
Key0033:java.specification.version -> 1.6
Key0034:java.class.path -> C:\Program Files\NetBeans 6.7\ide11\modules\ext\mysql-connector-java-5.1.6-bin.jar;D:\zyy\jarFactory\poi-3.6\poi-3.6-20091214.jar;D:\zyy\jarFactory\poi-3.6\poi-contrib-3.6-20091214.jar;D:\zyy\jarFactory\poi-3.6\poi-examples-3.6-20091214.jar;D:\zyy\jarFactory\poi-3.6\poi-ooxml-3.6-20091214.jar;D:\zyy\jarFactory\poi-3.6\poi-ooxml-schemas-3.6-20091214.jar;D:\zyy\jarFactory\poi-3.6\poi-scratchpad-3.6-20091214.jar;D:\zyy\jarFactory\itext\IText\itext-1.3.1.jar;D:\zyy\jarFactory\itext\IText\iTextAsian.jar;D:\zyy\jarFactory\batik-1.7\lib\batik-transcoder.jar;D:\zyy\jarFactory\batik-1.7\lib\batik-anim.jar;D:\zyy\jarFactory\batik-1.7\lib\batik-awt-util.jar;D:\zyy\jarFactory\batik-1.7\lib\batik-util.jar;D:\zyy\jarFactory\batik-1.7\lib\batik-bridge.jar;D:\zyy\jarFactory\batik-1.7\lib\batik-codec.jar;D:\zyy\jarFactory\batik-1.7\lib\batik-css.jar;D:\zyy\jarFactory\batik-1.7\lib\batik-dom.jar;D:\zyy\jarFactory\batik-1.7\lib\batik-ext.jar;D:\zyy\jarFactory\batik-1.7\lib\batik-extension.jar;D:\zyy\jarFactory\batik-1.7\lib\batik-gui-util.jar;D:\zyy\jarFactory\batik-1.7\lib\batik-gvt.jar;D:\zyy\jarFactory\batik-1.7\lib\batik-parser.jar;D:\zyy\jarFactory\batik-1.7\lib\batik-script.jar;D:\zyy\jarFactory\batik-1.7\lib\batik-svg-dom.jar;D:\zyy\jarFactory\batik-1.7\lib\batik-svggen.jar;D:\zyy\jarFactory\batik-1.7\lib\batik-swing.jar;D:\zyy\jarFactory\batik-1.7\batik-rasterizer.jar;D:\zyy\jarFactory\batik-1.7\batik-slideshow.jar;D:\zyy\jarFactory\batik-1.7\batik-squiggle.jar;D:\zyy\jarFactory\batik-1.7\batik-svgpp.jar;D:\zyy\jarFactory\batik-1.7\batik-ttf2svg.jar;D:\zyy\jarFactory\batik-1.7\batik.jar;D:\zyy\jarFactory\batik-1.7\lib\js.jar;D:\zyy\jarFactory\batik-1.7\lib\pdf-transcoder.jar;D:\zyy\jarFactory\batik-1.7\lib\xalan-2.6.0.jar;D:\zyy\jarFactory\batik-1.7\lib\xerces_2_5_0.jar;D:\zyy\jarFactory\batik-1.7\lib\xml-apis-ext.jar;D:\zyy\jarFactory\batik-1.7\lib\xml-apis.jar;D:\zyy\project\TestForRepax10\build\classes;D:\zyy\project\TestForRepax10\src
Key0035:user.name -> dell
Key0036:java.vm.specification.version -> 1.0
Key0037:java.home -> C:\Program Files\Java\jdk1.6.0_10\jre
Key0038:sun.arch.data.model -> 32
Key0039:user.language -> zh
Key0040:java.specification.vendor -> Sun Microsystems Inc.
Key0041:awt.toolkit -> sun.awt.windows.WToolkit
Key0042:java.vm.info -> mixed mode, sharing
Key0043:java.version -> 1.6.0_10-rc2
Key0044:java.ext.dirs -> C:\Program Files\Java\jdk1.6.0_10\jre\lib\ext;C:\Windows\Sun\Java\lib\ext
Key0045:sun.boot.class.path -> C:\Program Files\Java\jdk1.6.0_10\jre\lib\resources.jar;C:\Program Files\Java\jdk1.6.0_10\jre\lib\rt.jar;C:\Program Files\Java\jdk1.6.0_10\jre\lib\sunrsasign.jar;C:\Program Files\Java\jdk1.6.0_10\jre\lib\jsse.jar;C:\Program Files\Java\jdk1.6.0_10\jre\lib\jce.jar;C:\Program Files\Java\jdk1.6.0_10\jre\lib\charsets.jar;C:\Program Files\Java\jdk1.6.0_10\jre\classes
Key0046:java.vendor -> Sun Microsystems Inc.
Key0047:file.separator -> \
Key0048:java.vendor.url.bug -> http://java.sun.com/cgi-bin/bugreport.cgi
Key0049:sun.io.unicode.encoding -> UnicodeLittle
Key0050:sun.cpu.endian -> little
Key0051:sun.desktop -> windows
Key0052:sun.cpu.isalist -> pentium_pro+mmx pentium_pro pentium+mmx pentium i486 i386 i86

 

 

本机支持的全部编码集名字
Big5
Big5-HKSCS
EUC-JP
EUC-KR
GB18030
GB2312
GBK
IBM-Thai
IBM00858
IBM01140
IBM01141
IBM01142
IBM01143
IBM01144
IBM01145
IBM01146
IBM01147
IBM01148
IBM01149
IBM037
IBM1026
IBM1047
IBM273
IBM277
IBM278
IBM280
IBM284
IBM285
IBM297
IBM420
IBM424
IBM437
IBM500
IBM775
IBM850
IBM852
IBM855
IBM857
IBM860
IBM861
IBM862
IBM863
IBM864
IBM865
IBM866
IBM868
IBM869
IBM870
IBM871
IBM918
ISO-2022-CN
ISO-2022-JP
ISO-2022-JP-2
ISO-2022-KR
ISO-8859-1
ISO-8859-13
ISO-8859-15
ISO-8859-2
ISO-8859-3
ISO-8859-4
ISO-8859-5
ISO-8859-6
ISO-8859-7
ISO-8859-8
ISO-8859-9
JIS_X0201
JIS_X0212-1990
KOI8-R
KOI8-U
Shift_JIS
TIS-620
US-ASCII
UTF-16
UTF-16BE
UTF-16LE
UTF-32
UTF-32BE
UTF-32LE
UTF-8
windows-1250
windows-1251
windows-1252
windows-1253
windows-1254
windows-1255
windows-1256
windows-1257
windows-1258
windows-31j
x-Big5-Solaris
x-euc-jp-linux
x-EUC-TW
x-eucJP-Open
x-IBM1006
x-IBM1025
x-IBM1046
x-IBM1097
x-IBM1098
x-IBM1112
x-IBM1122
x-IBM1123
x-IBM1124
x-IBM1381
x-IBM1383
x-IBM33722
x-IBM737
x-IBM834
x-IBM856
x-IBM874
x-IBM875
x-IBM921
x-IBM922
x-IBM930
x-IBM933
x-IBM935
x-IBM937
x-IBM939
x-IBM942
x-IBM942C
x-IBM943
x-IBM943C
x-IBM948
x-IBM949
x-IBM949C
x-IBM950
x-IBM964
x-IBM970
x-ISCII91
x-ISO-2022-CN-CNS
x-ISO-2022-CN-GB
x-iso-8859-11
x-JIS0208
x-JISAutoDetect
x-Johab
x-MacArabic
x-MacCentralEurope
x-MacCroatian
x-MacCyrillic
x-MacDingbat
x-MacGreek
x-MacHebrew
x-MacIceland
x-MacRoman
x-MacRomania
x-MacSymbol
x-MacThai
x-MacTurkish
x-MacUkraine
x-MS932_0213
x-MS950-HKSCS
x-mswin-936
x-PCK
x-SJIS_0213
x-UTF-16LE-BOM
X-UTF-32BE-BOM
X-UTF-32LE-BOM
x-windows-50220
x-windows-50221
x-windows-874
x-windows-949
x-windows-950
x-windows-iso2022jp

 

——————printProperties End——————

发表评论

邮箱地址不会被公开。 必填项已用*标注