InputStream is=null;
        try 
        {
   is = new FileInputStream("E:\\唐贺\\tanghe.doc");
 } 
catch (FileNotFoundException e1)
        {
   e1.printStackTrace();
}
       try
       {
for(int i=0;i<read;i++)
{
int a=is.read();
System.out.println(a);
}


catch (IOException e1)
       {
e1.printStackTrace();
}
tanghe.doc中有五个字符为asdfs;但输出是ASCII码,如下,怎样输出为asdfs?
97
115
100
102
115