急等待。。。java与jsp
在java中将一个页面的内容生成了一个string,有多个页面,如何将其传到jsp的网页上。假设生成string s
我没什么jsp基础,请各位大侠多多教导!!!
[解决办法]
为什么要将页面的内容生成String,再把String传到JSP页面是什么意思?
你想做什么?
下面是生成String的代码。
public static String fileRead(String modelPath){ String readValue=""; try { FileInputStream fileIn = new FileInputStream("f:\\usersAdd.html"); BufferedReader bf = new BufferedReader(new InputStreamReader(fileIn, "UTF-8")); String br=""; while((br=bf.readLine())!=null){ readValue=readValue+"\r\n"+br; } } catch (Exception e) { e.printStackTrace(); } return readValue; }