1 19 package org.netbeans.modules.xml.api; 20 21 import java.io.*; 22 import javax.swing.text.*; 23 24 import org.netbeans.modules.xml.core.lib.EncodingHelper; 25 31 public class EncodingUtil { 32 33 38 public static String detectEncoding(InputStream in) throws IOException { 39 return EncodingHelper.detectEncoding(in); 40 } 41 42 43 47 public static String detectEncoding(Document doc) throws IOException { 48 return EncodingHelper.detectEncoding(doc); 49 } 50 51 } 52 | Popular Tags |