在jsp中,如何由字符串转化成Int型???
发布网友
发布时间:2022-08-16 17:47
我来回答
共4个回答
热心网友
时间:2023-10-08 18:39
//改好了,可以运行了……
lian1.jsp:
<%@ page contentType="text/html;charset=gbk";%>
<html>
<head>
<title>加法</title>
</head>
<body>
<form action="lian2.jsp">
加数:<input type="text"name="jiashu1"><br>
加数:<input type="text"name="jiashu2"><br>
<input type="submit"name="submit"value="等于">
</form>
</body>
</html>
lian2.jsp:
<%@ page language="java" import="java.util.*" pageEncoding="gb2312"%>
<html>
<head>
<title>
和的值
</title>
</head>
<body>
<%
int a = Integer.parseInt(request.getParameter("jiashu1"));
int b = Integer.parseInt(request.getParameter("jiashu2"));
int c=a+b;
%>
和为:<%=c %>
</body>
</html>
热心网友
时间:2023-10-08 18:40
Integer.parseInt(request.getParameter());
热心网友
时间:2023-10-08 18:40
这样也可以的,我一直这么用:
int b=Integer("100").intValue();
热心网友
时间:2023-10-08 18:41
String a = "100";
int b = Integer.parseInt(a);