com.upokecenter.text.encoders.EncodingLatinOne 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 EncodingLatinOne implements ICharacterEncoding {
private static class Decoder implements ICharacterDecoder {
public int ReadChar(IByteReader transform) {
int b = transform.read();
return (b < 0) ? (-1) : b;
}
}
private static class Encoder implements ICharacterEncoder {
public int Encode(
int c,
IWriter output) {
if (c < 0) {
return -1;
}
if (c < 0x100) {
output.write((byte)c);
return 1;
}
return -2;
}
}
private final Encoder encoder;
private final Decoder decoder;
public EncodingLatinOne() {
this.encoder = new Encoder();
this.decoder = new Decoder();
}
public ICharacterDecoder GetDecoder() {
return this.decoder;
}
public ICharacterEncoder GetEncoder() {
return this.encoder;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy