This file name is in chinese character I need to just read the file name and display it in my console, for this I am using if(fileName.startsWith("=?iso-8859-1"))
but its not coming inside if statement.
public static void main( String[] args )
{
try
{
clsEmail objEmail = new clsEmail();
File f = new File("P://1008/Work In Progress/Vijay Bheemanaik/pdf/Cisco-S11- POA1800005815-Inv04736851-100919重做没有.pdf");
String fileName = f.getName();
if (fileName != null)
{
if(fileName.startsWith("=?iso-8859-1"))
{
System.out.println("File name 2= "+fileName);
}
}
}
catch(Exception e)
{
e.printStackTrace();
}
}
}
Charset.forName("US-ASCII").newEncoder().canEncode(fileName). – Joachim Sauer Jan 17 '11 at 12:35