JAVA程序的几个小问题,有空的大神帮我看下谢谢啦~也可以让我给你发程序帮忙调一下万分感谢3QQQQQQ
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVA程序的几个小问题,有空的大神帮我看下谢谢啦~也可以让我给你发程序帮忙调一下万分感谢3QQQQQQ相关的知识,希望对你有一定的参考价值。
报错:
Description Resource Path Location Type
The operator + is undefined for the argument type(s) Integer, int LoginAction.java /MyOA/src/com/oa/struts/actions line 72 Java Problem
报错:The method setAccessTime(Integer) in the type AbstractUser is not applicable for the arguments (int)
报错:The method inttostr(int) in the type Change is not applicable for the arguments (Integer) UpfileAction.java
setAccessTime(Integer) 参数必须是Integer, 不能是int; 必须先转换
Change.inttostr(int) 参数必须是int, 不能是Integer; 也必须先转换
转换方法:
//int到Integer:
Integer A=new Integer(int value);
或者Integer A=Integer.valueOf(a);
//Integer到int:
Integer A=new Integer(5);
int a=A.intValue();追问
谢谢你啦 只差这一个问题了
The operator + is undefined for the argument type(s) Integer, int LoginAction.java /MyOA/src/com/oa/struts/actions line 72 Java Problem
把user.setAccessTime 定义的参数类型列出来看下.
追问public void setAccessTime(java.lang.Integer accessTime)
this.accessTime = accessTime;
user.setAccessTime(new Integer(user.getAccessTime().intValue()+1));
int和Integer是两种类型, 不能直接加减.
明显是错在这里,你想的太容易了追问
The operator + is undefined for the argument type(s) Integer, int LoginAction.java /MyOA/src/com/oa/struts/actions line 72 Java Problem
能帮我看看怎么改么、?谢啦
c#中session有值不能用,高人帮我看一下,谢谢啦!
我有A页面定义了一个session["search"]="select * form tb_News",来到B页面用Response.write(Convert.ToString(Session["search"]))能输出SQL字符串,可将这个作为变量传递的时候却不能成功:
this.dlNews.DataSource = CC.GetDataSet(Convert.ToString(Session["search"]), "tbNews");(到C页面去获取一个数据集),但是用这个就可以成功:
this.dlNews.DataSource = CC.GetDataSet("select * form tb_News","tbNews");
请大家帮我看一下,这个是为什么?
调用函数获取数据集时出错,是你sql语句执行之后出错了,这应该是服务器返回给web页面时出的错,你要在后台异常处理一下,把session输出来,看看到底是什么
参考技术C ——我不信命,我信爱情是没有理由悲欢的注定。 参考技术D 一般不这么用 还是公共变量 传递以上是关于JAVA程序的几个小问题,有空的大神帮我看下谢谢啦~也可以让我给你发程序帮忙调一下万分感谢3QQQQQQ的主要内容,如果未能解决你的问题,请参考以下文章
求助各位大神帮我看下 Unity3d 与 Android 交互的问题