
public class AccessStringTrends
{
  public String getNewString(String str)
   {
     String temp=""	;
     try
     {
       String temp_p=str;
       byte[] temp_t=temp_p.getBytes("ISO-8859-1");//ISO-8859-1
       temp=new String(temp_t);
     }
     catch(Exception e)
     {
       System.out.println("Error in AccessString3M "+e);
     }
     return temp;
   }
}