com.upokecenter.text.encoders.EncodingUtf16BE Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of encoding Show documentation
Show all versions of encoding Show documentation
A Java library that implements character encodings used in Web pages and email.
package com.upokecenter.text.encoders;
import java.io.*;
import com.upokecenter.util.*;
import com.upokecenter.text.*;
public class EncodingUtf16BE implements ICharacterEncoding {
public ICharacterDecoder GetDecoder() {
return EncodingUtf16.GetDecoder2(true);
}
public ICharacterEncoder GetEncoder() {
return EncodingUtf16.GetEncoder2(true);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy