Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for fileEncoding (0.13 sec)

  1. pom.xml

    						<scriptFile>${project.build.directory}/generated-packaging/rpm/scripts/preinst</scriptFile>
    						<fileEncoding>utf-8</fileEncoding>
    					</preinstallScriptlet>
    					<postinstallScriptlet>
    						<scriptFile>${project.build.directory}/generated-packaging/rpm/scripts/postinst</scriptFile>
    						<fileEncoding>utf-8</fileEncoding>
    					</postinstallScriptlet>
    					<preremoveScriptlet>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Sep 04 05:22:58 UTC 2025
    - 49.6K bytes
    - Viewed (0)
  2. 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)
  3. 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