- 论坛徽章:
- 0
|
用下面bean进行转换一下哟!
import java.util.*;
public class tostring
{
byte[] bt;
String par="";
public String st(String str)
{
try{
bt=str.getBytes("ISO8859_1");
par=new String(bt,"gb2312");
return par;
}
catch(Exception e)
{
System.out.println(e.getMessage());
}
return par;}
public String s(String str)
{
try{
bt=str.getBytes("gb2312");
par=new String(bt,"ISO8859_1");
return par;
}
catch(Exception e)
{
System.out.println(e.getMessage());
}
return par;}
public String str(String str)
{
return str;}
public static String from_iso_8859_1(String source){
return source;
}
public static String to_iso_8859_1(String source){
return source;
}
public String showcontent(String strcon)
{
int spos=0;
int epos=0;
int totallen=strcon.length();
String strshow="";
String strmid="";
for(epos=0;epos<totallen;epos++)
{
char c=strcon.charAt(epos);
if(c==13)
{
if(epos!=spos)
{
strmid=strcon.substring(spos,epos);
strshow=strshow+strmid+"<p> ";
}
else
strshow=strshow+"<p> ";
spos=epos+2;
}
}
if(spos<totallen)
{
strmid=strcon.substring(spos,epos);
strshow=strshow+strmid+"<p> ";
}
return strshow;
}
} |
|