×

Loading...

a hint ....

本文发表在 rolia.net 枫下论坛this is a WINDOW NT enviroment. but I think it the same to Window 2000.You can have a try.
first modify the "Zone set" (区域设置)in “Control Panel". Set Zone as ”English(Unite states),not set as "Chinese (PRC)". Reboot the system.
Change your jsp programm as

<%@ page contentType="text/html;charset=ISO8859_1"%>

<html>
<head>
<title>Untitled</title>
</head>

<META http-equiv=Content-Type content="text/html; charset=ISO8859_1">

<body>
<%
//String cs=""; no necessary!
String sss= "目录";
//byte ba[]=sss.getBytes(); no necessary!
try{
//cs= new String(ba,"GBK" ); no necessary!
}catch (Exception ee){
System.out.println("exception");}
//out.println(cs); no necessary!
//PrintWriter pw = new PrintWriter(out); no necessary!
//pw.println(sss);
out.println(sss);

%>

It's no necessary to use GBK and getBytes()!
good luck!更多精彩文章及讨论,请光临枫下论坛 rolia.net
Report