`
openstudy
  • 浏览: 232573 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论
文章列表
http://www.talentdigger.cn/home/space-2516-do-blog-id-4874.html http://developer.android.com/sdk/index.html, 这里有安装说明
http://confluence.public.thoughtworks.org/display/CC/CruiseControlWithFindBugs
1)新建一个physical data model 2)菜单Database/ configure connections, 选择Connection Profiles属性页,点击Add Data Source按钮,弹出Connection Profile Definition对话框,Connection type选择jdbc, DBMS Type选择oracle,其他jdbc项按实际数据填写 3)点击左下角的Test Connection...按钮,如果测试结果显示Connection test Successful说明成功。如果显示Connection test failed说明测试失败,此 ...
http://www.eclipse.org/projects/project.php?id=tools.windowbuilder http://eclipse.org/windowbuilder/download.php Update Sites Eclipse 4.2 (Juno) http://download.eclipse.org/windowbuilder/WB/release/R201206261200/4.2/ Eclipse 3.8 (Juno) http://download.eclipse.org/windowbuilder/WB/release/R20120626 ...

cxf超时设置

http://download.oracle.com/docs/cd/E20686_01/English/Technical_Documentation/Web_Services/ProgrammersGuide/helpmain.htm?toc.htm?34314.htm         //调用WebService         JaxWsProxyFactoryBean factory = new JaxWsProxyFactoryBean();         factory.setServiceClass(IHelloWorldService.class);         fac ...
Access restriction: The type MotifComboBoxUI is not accessible due to restriction on required Windows -> Preferences -> Java -> Compiler -> Errors/Warnings -> Deprecated and trstricted API -> Forbidden reference (access rules): -> change to warning
https://mytutorial.svn.sourceforge.net/svnroot/mytutorial http://futurecode.googlecode.com/svn/trunk/ https://jwebbuilding.svn.sourceforge.net/svnroot/jwebbuilding/trunk/ 听说WindowBuilder Pro免费了,不错,http://code.google.com/intl/it-IT/javadevtools/download-wbpro.html, Update sites Eclipse 3.6 (Helios) ...
wsdl operation中参数的解析规律: 通常情况下由wsdl只定义一个input、一个output和一个Fault。input通常是一个对应复杂类型的element,这里我经常约束为request,ant出来的接口是一个request对象作为方法的参数,但是奇怪的是有时看别人的wsdl产生的代码却不是一个request参数,而是这个request中的多个具体属性作为这个方法的参数。最后经过我的追踪,发现: 1)当request对应的element定义为与operation(也即类的方法)的名字完全一样时,那么参数就不是一个request作为参数了,而是request的全部属性作为参数了。 ...
对于大文件的上传可以考虑将其分段传递,如客户端每次按1M的大小传递给服务器,根据文件的总的大小分多次传送完成整个文件的上传。每次传递需包含三个属性:fileName, byte[], offset 服务器端先判断文件是否存在,如果不存在则file.createNewFile()创建文件。然后使用RandomAccessFile根据offset和byte[]将数据写入服务器上的文件 File file = new File(filePath); if(!file.exists()){ file.createNewFile(); } RandomAccessFile raf = new Rand ...
记一下cxf客户的编写,免得老忘记。参见http://cxf.apache.org/docs/how-do-i-develop-a-client.html的JAX-WS Proxy部分,use Service.create to create Service instances。 package client; import java.net.URL; import javax.xml.namespace.QName; import javax.xml.ws.Service; import com.googlecode.futurecode.xproject.types.message. ...
my.ini的配置如下 [mysql] default-character-set=utf8 [mysqld] default-character-set=utf8 jdbc url>>> jdbc:mysql://192.168.0.164:3306/ewing?useUnicode=true&characterEncoding=utf-8 linux 下 [mysql] default_character_set=utf8 [mysqld] default_character_set=utf8 sqlyog ultimate V9.01破解: ...
1.文字压缩显示 参照java自带的demo下的jfc/java2d的ColorConvert,做了简单的修改。文字压缩显示的思路是将图片的宽度设为期望的宽度即可 public class ColorConvert extends JPanel { @Override protected void paintComponent(Graphics g) { super.paintComponent(g); Dimension d = getSize(); render(d.width, d.height / 2, (Graphics2D) g); }     public v ...
GraphEditor的功能非常强大 带标尺(ruler),print setup, print, pagesize, 对齐等 还有一些GraphEditor没用到的功能,如mxGraphComponent.setVerticalPageCount(int value)等 GraphEditor也存在一些问题 1.比如VerticalPageCount为3,保存后,重新打开,会发现并没有显示出3页的图幅,也就是说GraphEditor保存时并没有存储页面设置相关的内容,导致文件打开时不能正确解析文件
starFlow工作流引擎 http://www.iteye.com/news/20871 http://code.google.com/p/staritopensource/ http://jbook.sourceforge.net/  jbook excel swingx - http://swinglabs.org/ 下载地址http://java.net/downloads/swingx/releases/1.6.2/ How to Use the SwingX JXTable A JXTable is an extension to the standard Swing JTab ...

cxf资料

压缩 http://opensourceforce.org/forum/viewthread.php?tid=2759 超时和附件上传http://cxf.547215.n5.nabble.com/CXF-client-td597616.html Handling the Apache CXF Java Client Timeout If you are using CXF, you can control the client timeout by programmatically obtaining the HTTPConduit from the proxy and setting th ...
Global site tag (gtag.js) - Google Analytics