Java开发网 Java开发网
注册 | 登录 | 帮助 | 搜索 | 排行榜 | 发帖统计  

您没有登录

» Java开发网 » Java IDE  

按打印兼容模式打印这个话题 打印话题    把这个话题寄给朋友 寄给朋友    该主题的所有更新都将Email到你的邮箱 订阅主题
flat modethreaded modego to previous topicgo to next topicgo to back
作者 Re:JBuilder使用技巧 [Re:yamakasy]
powerlei



发贴: 0
积分: 0
于 2003-12-22 12:37 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
SwingUtilities.updateComponentTreeUI(TouchyFeely.this);Smile
这句是什么意思是??
谢谢?



作者 Re:JBuilder使用技巧 [Re:yamakasy]
Feiing



发贴: 0
积分: 0
于 2003-12-26 10:25 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
首次发帖


作者 Re:JBuilder使用技巧 [Re:yamakasy]
hitdemo2002

max payne



发贴: 210
积分: 50
于 2004-01-02 01:12 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
jbuilder的代码提示也作的很好了..赫赫,也许是我以前没发现.
在xml文件中,用"shift+&"等xml中不允许的字符,会自动出现相应的ecape character



作者 Re:JBuilder使用技巧 [Re:yamakasy]
hitdemo2002

max payne



发贴: 210
积分: 50
于 2004-01-02 01:17 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
在jsp中如果想用什么特殊的符号,也有提示,挺方便的



作者 Re:JBuilder使用技巧 [Re:yamakasy]
hitdemo2002

max payne



发贴: 210
积分: 50
于 2004-01-02 01:19 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
对页面中引用的标签库也可以提示



作者 Re:JBuilder使用技巧 [Re:yamakasy]
hitdemo2002

max payne



发贴: 210
积分: 50
于 2004-01-02 01:25 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
编辑变量及相应的get,set方法的这个也很方便,我原来一直用第三方插件的,jb8,9的时候我还真没注意有没有.



作者 Re:JBuilder使用技巧 [Re:yamakasy]
hitdemo2002

max payne



发贴: 210
积分: 50
于 2004-01-02 01:36 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
可视化的editor



作者 Re:JBuilder使用技巧 [Re:yamakasy]
bozy



发贴: 0
积分: 0
于 2004-01-05 15:10 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
SMILEYSddddd


作者 Re:JBuilder使用技巧 [Re:yamakasy]
dvictor





发贴: 3
积分: 0
于 2004-01-14 16:13 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list



作者 Re:JBuilder使用技巧 [Re:yamakasy]
kevinsky



发贴: 0
积分: 0
于 2004-02-19 14:57 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
滚轮还是不好使
我试了一下的
不过还是支持,谢谢



作者 Re:JBuilder使用技巧 [Re:yamakasy]
gore



发贴: 0
积分: 0
于 2004-02-27 16:01 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list



作者 Re:JAVA控制EXCEL的方法之一 [Re:zua]
hohaischooldays





发贴: 112
积分: 10
于 2004-03-03 09:15 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
zua wrote:
生成新的Excel工作薄
  下面的代码主要是向大家介绍如何生成简单的Excel工作表,在这里单元格的内容是不带任何修饰的(如:字体,颜色等等),所有的内容都作为字符串写入。(完整代码见ExcelWriting.java)
  与读取Excel工作表相似,首先要使用Workbook类的工厂方法创建一个可写入的工作薄(Workbook)对象,这里要注意的是,只能通过API提供的工厂方法来创建Workbook,而不能使用WritableWorkbook的构造函数,因为类WritableWorkbook的构造函数为protected类型。示例代码片段如下:

import java.io.*;
import jxl.*;
import jxl.write.*;
… … … …
try
{
//构建Workbook对象, 只读Workbook对象
//Method 1:创建可写入的Excel工作薄
jxl.write.WritableWorkbook wwb = Workbook.createWorkbook(new File(targetfile));
//Method 2:将WritableWorkbook直接写入到输出流
/*
OutputStream os = new FileOutputStream(targetfile);
jxl.write.WritableWorkbook wwb = Workbook.createWorkbook(os);
*/
}
catch (Exception e)
{
e.printStackTrace();
}
  API提供了两种方式来处理可写入的输出流,一种是直接生成本地文件,如果文件名不带全路径的话,缺省的文件会定位在当前目录,如果文件名带有全路径的话,则生成的Excel文件则会定位在相应的目录;另外一种是将Excel对象直接写入到输出流,例如:用户通过浏览器来访问Web服务器,如果HTTP头设置正确的话,浏览器自动调用客户端的Excel应用程序,来显示动态生成的Excel电子表格。
 

“如果HTTP头设置正确的话 ”指的是什么呀???



作者 Re:JBuilder使用技巧 [Re:yamakasy]
floater

Java Jedi

总版主


发贴: 3233
积分: 421
于 2004-03-03 11:06 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
set contenttype header to excel will trigger excel to launch from browsers.


"Any fool can write code that a computer can understand. Good programmers write code that humans can understand."
- Martin Fowler, Refactoring - Improving the Design of Existing Code
作者 Re:JBuilder使用技巧 [Re:yamakasy]
sunjin007



发贴: 0
积分: 0
于 2004-03-03 12:50 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
要在JBUilder x的Project encoding里面将其设为GB2312不然会有莫名其妙的错误


作者 Quick workaround for installing JBuilder X under Windows 2003 [Re:yamakasy]
阿熊



发贴: 0
积分: 0
于 2004-03-08 12:48 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
Place JBuilder installation CD in drive.
Click Cancel when launcher appears
Open Explorer and browse to CD
Right-click install_windows.exe
Select Properties
Select Compatibility tab
Check "Run this program in compatibility mode for:
Select Windows XP
Click OK
Run install_windows.exe



作者 Re:JBuilder使用技巧 [Re:yamakasy]
colonelch





发贴: 2
积分: 0
于 2004-03-10 14:04 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list



作者 Re:JBuilder使用技巧 [Re:yamakasy]
info72



发贴: 0
积分: 0
于 2004-03-25 12:06 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
最新的jbx就可以了


作者 Re:JBuilder使用技巧 [Re:yamakasy]
sungo

魔流剑*风之痕



发贴: 12
积分: 0
于 2004-03-26 16:35 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
http://www.javaworld.com.tw/jute/post/view?bid=10&id=37251&sty=1&tpg=1&age=0



作者 Re:JBuilder使用技巧 [Re:yamakasy]
hncszy

你的眼神

CJSDN高级会员


发贴: 322
积分: 63
于 2004-04-10 22:53 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
zua wrote:
Place JBuilder installation CD in drive.
Click Cancel when launcher appears
Open Explorer and browse to CD
Right-click install_windows.exe
Select Properties
Select Compatibility tab
Check "Run this program in compatibility mode for:
Select Windows XP
Click OK
Run install_windows.exe

这也可用于在WIN2K3 安装其他程序!比如rational rose 2003!!!



作者 Re:JBuilder使用技巧 [Re:yamakasy]
zhanglixy



发贴: 0
积分: 0
于 2004-04-18 13:33 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
说点调试技巧好不好,光说这些外观控制,那是程序员干的事吗???


作者 Re:JBuilder使用技巧 [Re:yamakasy]
KQH0319



发贴: 0
积分: 0
于 2004-05-06 09:52 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
学习


作者 Re:JBuilder使用技巧 [Re:yamakasy]
yiqianfeng



发贴: 0
积分: 0
于 2004-05-09 15:21 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
eeee


作者 Re:JBuilder使用技巧 [Re:yamakasy]
happyboy227



发贴: 0
积分: 0
于 2004-05-20 23:43 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
好方法,我试了一下,真管用!


作者 Re:JBuilder使用技巧 [Re:yamakasy]
yangjinfeng





发贴: 26
积分: 0
于 2004-06-07 16:55 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
收藏


作者 Re:JBuilder使用技巧 [Re:yamakasy]
xidianliuy

LOVE JAVA



发贴: 146
积分: 10
于 2004-06-14 13:58 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
fly2fire老兄,我按照
“将Jbuilder7的JDK设置成为1。4的就可以支持滚轮。
找到jbuilder7/bin/jdk.config文件。
修改如下两行:
javapath ../jdk1.4/jre/bin/client/jvm.dll

addpath ../jdk1.4/lib/tools.jar”
做了,滚轮问题是解决了,可是当我打import java后出现的提示框不会跟随选择java,请帮忙解决一下。谢谢!

我改为jdk1.5好像也不行!



作者 Re:JBuilder使用技巧 [Re:yamakasy]
brooklet





发贴: 9
积分: 10
于 2004-06-25 10:33 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
是的,用jb9就直接支持滚轮了。呵呵


作者 Re:JBuilder使用技巧 [Re:yamakasy]
lijuntian526



发贴: 0
积分: 0
于 2004-07-29 19:41 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
说着说着和JBJILDER有什么关系


作者 Re:JBuilder使用技巧 [Re:yamakasy]
Liushuguo



发贴: 0
积分: 0
于 2004-09-09 12:27 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
ctrl + j : templates
使用 templates 可以提高编程的效率




作者 Re:JBuilder使用技巧 [Re:yamakasy]
gdxnlyf2004



发贴: 0
积分: 0
于 2004-09-15 23:34 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
有关系吧!!


作者 Re:JBuilder使用技巧 [Re:yamakasy]
remick



发贴: 0
积分: 0
于 2004-09-16 17:11 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
要是jbX能支持IE4.0鼠标的横滚动轮就好了


go to first page go to previous page  1   2   3  go to next page go to last page

flat modethreaded modego to previous topicgo to next topicgo to back
  已读帖子
  新的帖子
  被删除的帖子
Jump to the top of page

   Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent
Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1
客服电话 18559299278    客服信箱 714923@qq.com    客服QQ 714923