如何在jsp中从html文本区域行字符串java给出

发布于 2024-10-07 01:13:29 字数 549 浏览 1 评论 0原文

这样的html代码页就是jsp吗?

<form action="">
<div align="center"><textarea name="" cols="50" rows="4">welcome to my program</textarea></div>
</form>

如果在此文本区域行中写入。 servlet 中的对象 String 中的行如何转换?

我就知道是这样的

  <form action="perform_action.jsp" method="post">
      <input type="submit" value="OK">
  </form>

Perform_action.jsp:

if ( <all_ок> ) { 
    Sample.task(); 
}

可以在一页jsp上做吗? 抱歉英语不好。

Is such html code page jsp?

<form action="">
<div align="center"><textarea name="" cols="50" rows="4">welcome to my program</textarea></div>
</form>

if write in this textarea line. How the line translate in object String in servlet?

I'm know such the way.

  <form action="perform_action.jsp" method="post">
      <input type="submit" value="OK">
  </form>

perform_action.jsp:

if ( <all_ок> ) { 
    Sample.task(); 
}

may way do on the one page jsp?
sorry for bad english.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

纸短情长 2024-10-14 01:13:29

让表单操作指向 web.xml 中定义的 servlet URL,并为输入元素指定名称。

<form action="servleturl" method="post">
    <textarea name="text"></textarea>
    <input type="submit">
</form>

提交的内容将在 servlet 的 doPost() 方法中作为请求参数提供,其中您使用输入元素的名称作为参数名称。

String text = request.getParameter("text");

另请参阅:

Let the form action point to the servlet URL as definied in <url-pattern> in web.xml and give the input elements a name.

<form action="servleturl" method="post">
    <textarea name="text"></textarea>
    <input type="submit">
</form>

The submitted content will be available in doPost() method of servlet as request parameter where you use the name of the input element as parameter name.

String text = request.getParameter("text");

See also:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文