没有使用JSP获取url变量

时间:2012-12-12 19:04:21

标签: html jsp

我正在为学校写一个在线文本编辑器。我已经能够使用自定义名称保存文件,因此这不是问题。使用我拥有的HTML表单,它将TextArea的文本提交到用户指定的文件中,然后将url设置为blah.org/text.jsp?status=gen。稍后在代码中,如果变量status == gen,我有程序写文件,否则什么都不做。当我点击提交时,我无法创建文件,我认为这与我在URL中获取变量有关。这是我的代码:

    /* Set the "user" variable to the "user" attribute assigned to the session */
String user = (String)session.getAttribute("user");
String status = request.getParameter("status");
    /* Get the name of the file */
String name = request.getParameter("name");
    /* Set the path of the file */
String path = "C:/userFiles/" + user + "/" + name + ".txt";
/* Get the text in a TextArea */
String value = request.getParameter("textArea");
    /* If there isn't a session, tell the user to Register/Log In */
if (null == session.getAttribute("user")) {
out.println("Please Register/Log-In to continue!");
    if (status == "gen") {
        try {
            FileOutputStream fos = new FileOutputStream(path);
            PrintWriter pw = new PrintWriter(fos);
            pw.println(value);
            pw.close();
            fos.close();
    }
    catch (Exception e) {
        out.println("<p>Exception Caught!");
    }
} else {
out.println("Error");
}
}

和表格:

<form name="form1" method="POST" action="text.jsp?status=gen">
<textarea cols="50" rows="30" name="textArea"></textarea>
<center>Name: <input type="text" name="name" value="Don't put a .ext"> <input type="submit" value="Save" class="button"></center>
other code here </form>

2 个答案:

答案 0 :(得分:0)

替换

if (status == "gen") {

if ( status.equals("gen") ) {

甚至更好

if ( "gen".equals(status) ) {

您的第一个语句执行对象相等而不是字符串相等。因此,它总是返回false。

答案 1 :(得分:0)

您将字符串与==进行比较,而不是将其与.equals()进行比较。 ==比较字符串是同一个对象实例,而不是它们包含相同的字符。

请务必阅读IO tutorial。应始终在finally块中关闭流,或者应使用Java 7 try-with-resources构造。