Read Unicode and UTF-8 encoded files in J2ME

Source: Internet
Author: User
Tags resource stringbuffer

First, read the Unicode file
/**

* Read Unicode encoded text file

* @param resource String-filename

* @return String-unicode text

*/

public static string Read_uni (string resource) {

byte word_uni[] = new byte[1024];

String strreturn = null;

InputStream is;

try {

is = Instance.getclass (). getResourceAsStream (Resource);

Is.skip (2); Skip two-byte file headers

Is.read (Word_uni);

Is.close ();

StringBuffer StringBuffer = new StringBuffer ("");

for (int j = 0; J < Word_uni.length;) {

int l = word_uni[j++];

int h = word_uni[j++];

char C = (char) ((L & 0xff) | ((H << 8) & 0xff00));

Stringbuffer.append (c);

}

Strreturn = Stringbuffer.tostring ();

catch (IOException ex) {

System.out.println (ex);

finally {

is = null;

}

return strreturn;

}

Second, read UTF-8 files

/**

* Read UTF-8 encoded text file

* @param resource String-filename

* @return String-utf-8 text

*/

public static string Read_utf (string resource) {

byte word_utf[] = new byte[1024];

String strreturn = null;

InputStream is;

try {

is = Instance.getclass (). getResourceAsStream (Resource);

Is.read (WORD_UTF);

Is.close ();

Strreturn = new String (Word_utf, "UTF-8");

catch (IOException ex) {

System.out.println (ex);

}

return strreturn;

}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.