Searched refs:charset (Results 76 - 100 of 397) sorted by relevance

1234567891011>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DXmlDataContentHandler.java80 String charset = null;
88 charset = ct.getParameter("charset");
90 return (charset != null)
91 ? new StreamSource(new InputStreamReader(ds.getInputStream()), charset)
112 String charset = ct.getParameter("charset");
115 if (charset == null) {
116 charset = "utf-8";
118 OutputStreamWriter osw = new OutputStreamWriter(os, charset);
[all...]
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DUnicodeDecoder.java30 import java.nio.charset.Charset;
31 import java.nio.charset.CharsetDecoder;
32 import java.nio.charset.CoderResult;
33 import java.nio.charset.CharacterCodingException;
34 import java.nio.charset.MalformedInputException;
H A DSingleByteDecoder.java33 import java.nio.charset.Charset;
34 import java.nio.charset.CharsetDecoder;
35 import java.nio.charset.CoderResult;
36 import java.nio.charset.CharacterCodingException;
37 import java.nio.charset.MalformedInputException;
38 import java.nio.charset.UnmappableCharacterException;
/openjdk7/jdk/make/tools/CharsetMapping/
H A DDoubleByte-X.java.template30 import java.nio.charset.Charset;
31 import java.nio.charset.CharsetDecoder;
32 import java.nio.charset.CharsetEncoder;
/openjdk7/jdk/test/sun/nio/cs/
H A DTestIBMBugs.java31 import java.nio.charset.*;
48 String charset = charsets[n];
49 CharsetEncoder converter = Charset.forName(charset).newEncoder();
71 throw new Exception("Charset "+charset+": "+errors+" errors");
78 String charset = charsets[n];
79 CharsetEncoder converter = Charset.forName(charset).newEncoder();
92 throw new Exception("Charset "+charset+": "+errors+" errors");
98 Charset charset = Charset.forName(encoding);
99 CharsetDecoder converter = charset.newDecoder();
115 throw new Exception("Charset "+charset
[all...]
/openjdk7/jaxp/src/com/sun/xml/internal/stream/writers/
H A DWriterUtility.java32 import java.nio.charset.Charset;
33 import java.nio.charset.CharsetEncoder;
87 String charset = ((OutputStreamWriter)writer).getEncoding();
88 if(charset != null){
89 fEncoder = Charset.forName(charset).newEncoder();
92 String charset = ((FileWriter)writer).getEncoding();
93 if(charset != null){
94 fEncoder = Charset.forName(charset).newEncoder();
/openjdk7/jdk/src/share/classes/java/util/zip/
H A DZipCoder.java30 import java.nio.charset.Charset;
31 import java.nio.charset.StandardCharsets;
32 import java.nio.charset.CharsetDecoder;
33 import java.nio.charset.CharsetEncoder;
34 import java.nio.charset.CoderResult;
35 import java.nio.charset.CodingErrorAction;
138 static ZipCoder get(Charset charset) { argument
139 return new ZipCoder(charset);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/util/
H A DEncoderFactory.java32 import java.nio.charset.Charset;
33 import java.nio.charset.CharsetEncoder;
36 * Creates {@link CharsetEncoder} from a charset name.
H A DMS1252Encoder.java31 import java.nio.charset.Charset;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/marshaller/
H A DNioEscapeHandler.java30 import java.nio.charset.Charset;
31 import java.nio.charset.CharsetEncoder;
54 // public NioEscapeHandler(Charset charset) {
55 // this(charset.newEncoder());
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/
H A DUnsupportedMediaException.java50 public UnsupportedMediaException(String charset) { argument
51 super(ServerMessages.localizableUNSUPPORTED_CHARSET(charset));
/openjdk7/langtools/src/share/classes/com/sun/tools/javah/
H A DNativeHeaderTool.java29 import java.nio.charset.Charset;
101 * @param charset the character set used for decoding bytes; if
108 Charset charset);
105 getStandardFileManager( DiagnosticListener<? super JavaFileObject> diagnosticListener, Locale locale, Charset charset) argument
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DDisassemblerTool.java29 import java.nio.charset.Charset;
104 * @param charset the character set used for decoding bytes; if
111 Charset charset);
108 getStandardFileManager( DiagnosticListener<? super JavaFileObject> diagnosticListener, Locale locale, Charset charset) argument
/openjdk7/langtools/src/share/classes/javax/tools/
H A DJavaCompiler.java30 import java.nio.charset.Charset;
280 * @param charset the character set used for decoding bytes; if
287 Charset charset);
284 getStandardFileManager( DiagnosticListener<? super JavaFileObject> diagnosticListener, Locale locale, Charset charset) argument
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DJIS_X_0208_Encoder.java31 import java.nio.charset.Charset;
32 import java.nio.charset.CharsetEncoder;
39 * charset x-JIS-X-0208 to instantiate with a
70 * converters co-exist with the sun.nio.cs.{ext} charset coders
/openjdk7/jaxp/src/org/w3c/dom/html/
H A DHTMLScriptElement.java68 * The character encoding of the linked resource. See the charset
72 public void setCharset(String charset); argument
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWDefaultFontCharset.java27 import java.nio.charset.*;
/openjdk7/jdk/test/java/nio/charset/Charset/
H A DEncDec.java30 import java.nio.charset.*;
H A DIllegalCharsetName.java27 * if the charset names passed in are illegal.
32 import java.nio.charset.*;
/openjdk7/jdk/test/java/nio/charset/CharsetDecoder/
H A DEmptyInput.java30 import java.nio.charset.*;
/openjdk7/jdk/test/java/nio/charset/coders/
H A DStreamTimeout.java38 private static String charset = "US-ASCII"; field in class:StreamTimeout
56 charset);
96 charset = args[0];
104 Reader rd = new InputStreamReader(is, charset);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DBaseFileManager.java44 import java.nio.charset.Charset;
45 import java.nio.charset.CharsetDecoder;
46 import java.nio.charset.CoderResult;
47 import java.nio.charset.CodingErrorAction;
48 import java.nio.charset.IllegalCharsetNameException;
49 import java.nio.charset.UnsupportedCharsetException;
63 protected BaseFileManager(Charset charset) { argument
64 this.charset = charset;
83 * User provided charset (throug
85 protected Charset charset; field in class:BaseFileManager
[all...]
/openjdk7/jdk/test/sun/nio/cs/OLD/
H A DIBM1381_OLD.java31 import java.nio.charset.Charset;
32 import java.nio.charset.CharsetDecoder;
33 import java.nio.charset.CharsetEncoder;
34 import java.nio.charset.CharacterCodingException;
66 * converters co-exist with the sun.nio.cs.{ext} charset coders
H A DIBM930_OLD.java31 import java.nio.charset.Charset;
32 import java.nio.charset.CharsetDecoder;
33 import java.nio.charset.CharsetEncoder;
34 import java.nio.charset.CharacterCodingException;
65 * converters co-exist with the sun.nio.cs.{ext} charset coders
H A DIBM935_OLD.java31 import java.nio.charset.Charset;
32 import java.nio.charset.CharsetDecoder;
33 import java.nio.charset.CharsetEncoder;
34 import java.nio.charset.CharacterCodingException;
65 * converters co-exist with the sun.nio.cs.{ext} charset coders

Completed in 155 milliseconds

1234567891011>>