已有101人关注
java开发实例中的问题
发表在Java图书答疑 2011-11-06
是否精华
版块置顶:
课本说 用sql2000 我用的是sql2005 数据库连接不上  [Microsoft][SQLServer 2000 Driver for JDBC]Error establishing socket.应该怎么解决
分享到:
精彩评论 7
LKDC782742
学分:0 LV1
TA的每日心情
奋斗
2022-01-27 18:39:27
2011-11-06
沙发
private JButton createFrameButton(String fName, String cname) {
String imgUrl = "res/ActionIcon/" + fName + ".png";
String imgUrl_roll = "res/ActionIcon/" + fName + "_roll.png";
String imgUrl_down = "res/ActionIcon/" + fName + "_down.png";
Icon icon = new ImageIcon(imgUrl);
Icon icon_roll = null;
if (imgUrl_roll != null)
icon_roll = new ImageIcon(imgUrl_roll);
Icon icon_down = null;
if (imgUrl_down != null)
icon_down = new ImageIcon(imgUrl_down);
Action action = new openFrameAction(fName, cname, icon);
JButton button = new JButton(action);
button.setMargin(new Insets(0, 0, 0, 0));
[font color=#FF0000]button.setHideActionText(true);
[/font]
这句报错 the method setHideActionText is undifined for the type button
LKDC782742
学分:0 LV1
TA的每日心情
奋斗
2022-01-27 18:39:27
2011-11-06
板凳
public static boolean insertRukuInfo(TbRukuMain ruMain) {
try {
boolean autoCommit = conn.getAutoCommit();
conn.setAutoCommit(false);
// 添加入库主表记录
insert("insert into tb_ruku_main values('" + ruMain.getRkId()
+ "','" + ruMain.getPzs() + "'," + ruMain.getJe() + ",'"
+ ruMain.getYsjl() + "','" + ruMain.getGysname() + "','"
+ ruMain.getRkdate() + "','" + ruMain.getCzy() + "','"
+ ruMain.getJsr() + "','" + ruMain.getJsfs() + "')");
Set<TbRukuDetail> rkDetails = ruMain.getTabRukuDetails();
for (Iterator<TbRukuDetail> iter = rkDetails.iterator(); iter
.hasNext();) {
TbRukuDetail details = iter.next();
// 添加入库详细表记录
insert("insert into tb_ruku_detail values('" + ruMain.getRkId()
+ "','" + details.getTabSpinfo() + "',"
+ details.getDj() + "," + details.getSl() + ")");
// 添加或修改库存表记录
Item item = new Item();
item.setId(details.getTabSpinfo());
TbSpinfo spInfo = getSpInfo(item);[font color=#FF0000]
if (spInfo.getId() != null && !spInfo.getId().isEmpty()) {
[/font] TbKucun kucun = getKucun(item);
if (kucun.getId() == null || kucun.getId().isEmpty()) {



the method isEmpty is undefined for the type string 这具体怎么改呢 老师 新手求教啊
aster
学分:0 LV1
TA的每日心情
开心
2023-01-31 09:41:43
2011-11-09
地板
[FIELDSET][LEGEND]引自:楼主[/LEGEND]
课本说 用sql2000 我用的是sql2005 数据库连接不上  [Microsoft][SQLServer 2000 Driver for JDBC]Error establishing socket.应该怎么解决
[/FIELDSET]

回复:这个问题可能是由于驱动包不对引起的,请问您是使用的SQL2005的驱动包吗?SQL2000和SQL2005的驱动包是不同的~
  
aster
学分:0 LV1
TA的每日心情
开心
2023-01-31 09:41:43
2011-11-09
4L
[FIELDSET][LEGEND]引自:1楼[/LEGEND]
private JButton createFrameButton(String fName, String cname) {
String imgUrl = "res/ActionIcon/" + fName + ".png";
String imgUrl_roll = "res/ActionIcon/" + fName + "_roll.png";
String imgUrl_down = "res/ActionIcon/" + fName + "_down.png";
Icon icon = new ImageIcon(imgUrl);
Icon icon_roll = null;
if (imgUrl_roll != null)
icon_roll = new ImageIcon(imgUrl_roll);
Icon icon_down = null;
if (imgUrl_down != null)
icon_down = new ImageIcon(imgUrl_down);
Action action = new openFrameAction(fName, cname, icon);
JButton button = new JButton(action);
button.setMargin(new Insets(0, 0, 0, 0));
[font color=#FF0000]button.setHideActionText(true);
[/font]
这句报错 the method setHideActionText is undifined for the type button

[/FIELDSET]

回复:JButton类可能不支持setHideActionText方法,虽然它继承了AbstractButton。请问你想用这个方法干啥?
  
aster
学分:0 LV1
TA的每日心情
开心
2023-01-31 09:41:43
2011-11-09
5L
[FIELDSET][LEGEND]引自:2楼[/LEGEND]
public static boolean insertRukuInfo(TbRukuMain ruMain) {
try {
boolean autoCommit = conn.getAutoCommit();
conn.setAutoCommit(false);
// 添加入库主表记录
insert("insert into tb_ruku_main values('" + ruMain.getRkId()
+ "','" + ruMain.getPzs() + "'," + ruMain.getJe() + ",'"
+ ruMain.getYsjl() + "','" + ruMain.getGysname() + "','"
+ ruMain.getRkdate() + "','" + ruMain.getCzy() + "','"
+ ruMain.getJsr() + "','" + ruMain.getJsfs() + "')");
Set<TbRukuDetail> rkDetails = ruMain.getTabRukuDetails();
for (Iterator<TbRukuDetail> iter = rkDetails.iterator(); iter
.hasNext();) {
TbRukuDetail details = iter.next();
// 添加入库详细表记录
insert("insert into tb_ruku_detail values('" + ruMain.getRkId()
+ "','" + details.getTabSpinfo() + "',"
+ details.getDj() + "," + details.getSl() + ")");
// 添加或修改库存表记录
Item item = new Item();
item.setId(details.getTabSpinfo());
TbSpinfo spInfo = getSpInfo(item);[font color=#FF0000]
if (spInfo.getId() != null && !spInfo.getId().isEmpty()) {
[/font] TbKucun kucun = getKucun(item);
if (kucun.getId() == null || kucun.getId().isEmpty()) {



the method isEmpty is undefined for the type string 这具体怎么改呢 老师 新手求教啊
[/FIELDSET]

回复:spInfo.getId()的返回值类型是?
  
LKDC782742
学分:0 LV1
TA的每日心情
奋斗
2022-01-27 18:39:27
2011-11-09
6L
搞定了 ……
无语_mrkj
学分:3155 LV11
2011-11-15
7L
结贴
首页上一页 1 下一页尾页 7 条记录 1/1页
手机同步功能介绍
友情提示:以下图书配套资源能够实现手机同步功能
明日微信公众号
明日之星 明日之星编程特训营
客服热线(每日9:00-17:00)
400 675 1066
mingrisoft@mingrisoft.com
吉林省明日科技有限公司Copyright ©2007-2022,mingrisoft.com, All Rights Reserved长春市北湖科技开发区盛北大街3333号长春北湖科技园项目一期A10号楼四、五层
吉ICP备10002740号-2吉公网安备22010202000132经营性网站备案信息 营业执照