Searched refs:charset (Results 251 - 275 of 397) sorted by relevance

<<111213141516

/openjdk7/jdk/test/sun/nio/cs/
H A DNIOJISAutoDetectTest.java27 * @summary NIO charset basic verification of JISAutodetect decoder
34 import java.nio.charset.Charset;
35 import java.nio.charset.CharsetDecoder;
36 import java.nio.charset.CoderResult;
109 out.printf("SJIS charset is %s%n", SJIS);
110 out.printf("EUCJ charset is %s%n", EUCJ);
/openjdk7/jdk/test/sun/nio/cs/OLD/
H A DDBCS_IBM_EBCDIC_Encoder.java32 import java.nio.charset.Charset;
33 import java.nio.charset.CharsetEncoder;
34 import java.nio.charset.CoderResult;
H A DDoubleByteEncoder.java33 import java.nio.charset.Charset;
34 import java.nio.charset.CharsetEncoder;
35 import java.nio.charset.CoderResult;
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DStreamDecoder.java34 import java.nio.charset.*;
238 this.cs = dec.charset();
259 this.cs = dec.charset();
H A DStreamEncoder.java34 import java.nio.charset.*;
185 this.cs = enc.charset();
202 this.cs = enc.charset();
H A DSurrogate.java29 import java.nio.charset.CoderResult;
30 import java.nio.charset.MalformedInputException;
31 import java.nio.charset.UnmappableCharacterException;
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DDoubleByteEncoder.java33 import java.nio.charset.Charset;
34 import java.nio.charset.CharsetEncoder;
35 import java.nio.charset.CoderResult;
H A DSimpleEUCEncoder.java33 import java.nio.charset.Charset;
34 import java.nio.charset.CharsetEncoder;
35 import java.nio.charset.CoderResult;
H A DJISAutoDetect.java30 import java.nio.charset.Charset;
31 import java.nio.charset.CharsetDecoder;
32 import java.nio.charset.CharsetEncoder;
33 import java.nio.charset.CoderResult;
34 import java.nio.charset.CharacterCodingException;
35 import java.nio.charset.MalformedInputException;
238 throw new IllegalStateException("charset not yet detected");
239 return ((CharsetDecoder) detectedDecoder).charset();
/openjdk7/jdk/src/share/classes/java/util/zip/
H A DZipOutputStream.java30 import java.nio.charset.Charset;
31 import java.nio.charset.StandardCharsets;
98 * <p>The UTF-8 {@link java.nio.charset.Charset charset} is used
112 * @param charset the {@linkplain java.nio.charset.Charset charset}
117 public ZipOutputStream(OutputStream out, Charset charset) { argument
119 if (charset == null)
120 throw new NullPointerException("charset i
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/datatransfer/
H A DDataTransferer.java57 import java.nio.charset.Charset;
58 import java.nio.charset.CharsetEncoder;
59 import java.nio.charset.IllegalCharsetNameException;
60 import java.nio.charset.UnsupportedCharsetException;
155 * mimeType = "text/plain; charset=Unicode"
192 * Tracks whether a particular text/* MIME type supports the charset
256 ("text/plain;charset=Unicode;class=java.lang.String");
369 * If the specified flavor is a text flavor which supports the "charset"
371 * charset if no such parameter was specified at construction. For non-
372 * text DataFlavors, and for non-charset tex
423 doesSubtypeSupportCharset(String subType, String charset) argument
585 registerTextFlavorProperties(String nat, String charset, String eoln, String terminators) argument
2700 getEncoding(String charset) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DMtomCodec.java67 import java.nio.charset.Charset;
96 this.soapXopContentType = XOP_XML_MIME_TYPE +";charset=utf-8;type=\""+version.contentType+"\"";
234 String charset = null;
237 charset = new ContentTypeImpl(ct).getCharSet();
239 if (charset != null && !Charset.isSupported(charset)) {
240 throw new UnsupportedMediaException(charset);
246 XMLStreamReaderFactory.create(null, mpp.getRootPart().asInputStream(), charset, true)
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DEncodings.java38 import java.nio.charset.Charset;
39 import java.nio.charset.IllegalCharsetNameException;
40 import java.nio.charset.UnsupportedCharsetException;
140 // In that case we attempt to load the charset for the
143 // of the charset can be used as the mime name.
311 // Opens the file/resource containing java charset name -> preferred mime
334 // java charset name -> preferred mime name
358 // Parses the mime list associated to a java charset name.
382 // This method here attempts to find the canonical charset name for the
385 // For that, it attempts to load the charset usin
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DFrameView.java82 String charset = (String) host.getClientProperty("charset");
83 if (charset != null) {
84 htmlPane.putClientProperty("charset", charset);
/openjdk7/jdk/src/share/classes/sun/awt/
H A DAWTCharset.java30 import java.nio.charset.*;
33 //This class delegates all invokes to the charset "javaCs" if
/openjdk7/jdk/src/share/classes/java/lang/
H A DString.java29 import java.nio.charset.Charset;
104 * @see java.nio.charset.Charset
287 * java.nio.charset.Charset}, charset name, or that use the platform's
288 * default charset.
306 * @see #String(byte[], int, int, java.nio.charset.Charset)
309 * @see #String(byte[], java.nio.charset.Charset)
344 * java.nio.charset.Charset}, charset name, or that use the platform's
345 * default charset
449 String(byte bytes[], int offset, int length, Charset charset) argument
504 String(byte bytes[], Charset charset) argument
937 getBytes(Charset charset) argument
[all...]
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A DAbstractTest.java31 import java.nio.charset.Charset;
/openjdk7/jdk/test/java/nio/channels/DatagramChannel/
H A DConnect.java34 import java.nio.charset.*;
H A DConnectedSend.java34 import java.nio.charset.*;
H A DEmptyBuffer.java34 import java.nio.charset.*;
H A DSender.java34 import java.nio.charset.*;
/openjdk7/jdk/test/java/nio/channels/ServerSocketChannel/
H A DAdaptServerSocket.java32 import java.nio.charset.*;
/openjdk7/jdk/test/java/nio/channels/SocketChannel/
H A DFinishConnect.java33 import java.nio.charset.*;
/openjdk7/jdk/test/java/nio/charset/Charset/
H A DContains.java25 * @summary Unit test for charset containment
29 import java.nio.charset.*;
/openjdk7/jdk/test/java/nio/charset/CharsetEncoder/
H A DFlush.java33 import java.nio.charset.*;

Completed in 58 milliseconds

<<111213141516