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是两种类型, 不能直接加减.

参考技术A 就是你写的那个方法不存在,你的应该是时间属性或者字符串吧?怎么可能直接加1呢
明显是错在这里,你想的太容易了追问

 

 

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");
请大家帮我看一下,这个是为什么?

参考技术A 你在执行B页面的之前是否执行了A页面的session写入操作? 参考技术B 你给提示太模糊了,你能输出SQL字符串,怎么可能在传参的时候不能成功,我建议你还是要建立断点调试一下,看看你传进去的参数是个什么样子的追问

追答

调用函数获取数据集时出错,是你sql语句执行之后出错了,这应该是服务器返回给web页面时出的错,你要在后台异常处理一下,把session输出来,看看到底是什么

参考技术C         ——我不信命,我信爱情是没有理由悲欢的注定。    参考技术D 一般不这么用 还是公共变量 传递

以上是关于JAVA程序的几个小问题,有空的大神帮我看下谢谢啦~也可以让我给你发程序帮忙调一下万分感谢3QQQQQQ的主要内容,如果未能解决你的问题,请参考以下文章

求助各位大神帮我看下 Unity3d 与 Android 交互的问题

找大神帮我看下这个3060ti的配置有无问题?

帮我看下怎样判断截尾和拖尾吧,谢谢!

pycharm安装完成,双击打开出错,哪位大神帮我看下,感谢。

大神帮我看下百度蜘蛛有没有来过我的网站

求大神 关于 pandas请帮我看下 线面这段代码 我用 jupyter notebook 运行 显示 错误