Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for fileEncoding (0.04 sec)

  1. src/test/java/org/codelibs/core/lang/SystemUtilTest.java

    /**
     * @author wyukawa
     *
     */
    public class SystemUtilTest {
    
        /**
         * @throws Exception
         */
        @Test
        public void test() throws Exception {
            System.out.println(SystemUtil.FILE_ENCODING);
            System.out.println(SystemUtil.LINE_SEPARATOR);
            System.out.println(SystemUtil.PATH_SEPARATOR);
            System.out.println(SystemUtil.OS_NAME);
            System.out.println(SystemUtil.JAVA_IO_TMPDIR);
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/lang/SystemUtil.java

        /**
         * Do not instantiate.
         */
        protected SystemUtil() {
        }
    
        /**
         * <code>file.encoding</code> system property. Example: UTF-8
         */
        public static final String FILE_ENCODING = System.getProperty("file.encoding");
    
        /**
         * <code>line.separator</code> system property. For example, on Mac OS X: <code>"\n"</code>
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 3.6K bytes
    - Viewed (0)
Back to top