i want how to get the content from websites with utf8 format,,

i have writing the following code is

try {
        String webnames = "http://pathivu.com";

        URL url = new URL(webnames);

        URLConnection urlc = url.openConnection();

        //BufferedInputStream buffer = new BufferedInputStream(urlc.getInputStream());
        BufferedReader buffer = new BufferedReader(new InputStreamReader(urlc.getInputStream(), "UTF8"));

        StringBuilder builder = new StringBuilder();

        int byteRead;

        while ((byteRead = buffer.read()) != -1)
            builder.append((char) byteRead);

        buffer.close();

        String text=builder.toString();

        System.out.println(text);
    } 
catch (IOException e) 
{
    e.printStackTrace();

}

but i cant get the correct format...

thanks and advance..

link|improve this question
feedback

2 Answers

The problem might be that your console or your System.out are not UTF-8.

  • Try writing this to a file instead
  • Set the console stream via System.setOut(..)

You may have to use -Dfile.encoding=utf-8 or OutputStreamWriter

link|improve this answer
Or when sitting inside an IDE, configure workspace encoding. In Eclipse it's Window > Preferences > General > Workspace > Text File Encoding. This one needs to be set to UTF-8 (+1). – BalusC Apr 6 '10 at 13:25
feedback

Your code looks ok.. the problem here it will be that in server the data will not be in UTF-8 format..

link|improve this answer
any solution for this problem? – zahir Apr 6 '10 at 5:30
please check in server from where u getting the contents.. can u provide more details on this – sreejith Apr 6 '10 at 5:38
i can easily getting the content if content in English, but other format that display like question mark or other symbols... what u want more details? – zahir Apr 6 '10 at 6:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.