View Javadoc

1   package com.loribel.commons.abstraction;
2   
3   /***
4    * Constants class.
5    * 
6    * @author Gregory Borelli
7    */
8   public abstract class ENCODINGDemo
9   {
10      public static void main(
11              String[] args)
12      {
13          System.out.println("Default encoding: " + ENCODING.LOCALE);
14  
15          String encoding = System.getProperty("file.encoding");
16          System.out.println("file.encoding in properties:" + encoding);
17      }
18  }