java 的悲哀swingx死了
虽然可以通过 https://swinglabs.dev.java.net/ 访问但是已经停止更新了,不知道新东家oracle是否会资助。
子项目
名称
摘要
actions
A simple framework for declarative actions in Swing apps
aerith
Cool JavaOne Demo
appframework
Swing Application Framework
beansbinding
Beans Binding (JSR 295) reference implementation
colorchooser
A Swing widget for selecting colors with a single mouse
gesture
databinding
SwingLabs Data Binding Framework
deployment
Tools for deploying Java desktop applications
fuse
Resource injection library.
jdic
JDesktop Integration Components
jdnc
SwingLabs Desktop Network Components
jxlayer
The universal decorator for the Swing components
laffy
Swing Look And Feel Demo Application
mediajuggler
Visual tool for generating java code of rich multimedia
effects
nimbus
Synth based look and feel for Swing
pdf-renderer
An All-Java PDF Renderer
scenegraph
Scene Graph for JavaFX
swing-blueprints
Blueprints Application for Swing
swing-layout
Extensions to Swing to create professional cross platform
layout
swinghelper
Making Swing easier!
swinglabs-demos
SwingLabs Demo Applications
swingset3
The next generation Swing Demo program
swingworker
long running Swing GUI interacting tasks
swingx
SwingLabs Swing Component Extensions
swingx-ws
Web Oriented JavaBeans and Swing
tabletpainter
Graphics editor with Tablet support
wizard
API and UI to develop wizards in Swing easily
相关文档:
计算机专业毕业两年了,终于找到学习的感觉了,后悔当时在学校时的无知和狂妄!!!
现在我对Java web编程有了兴趣,我写了自己的用户登录小程序,已经上传到我的CSDN空间了,欢迎大家来访问!!!
讨论之后,欢迎来信,共同提高!!!
联系方式:243093502@@qq.com ......
其实,这篇短文,我早就应该写了。因为,java存储过程今后在各大数据库厂商中越来越流行,功能也越来越强大。这里以Oracle为例,介绍一下java存储过程的具体用法。
一、如何创建java存储过程?
通常有三种方法来创建java存储过程。
1. 使用oracle的sql语句来创建:
e.g. 使用create or replace and compile java source ......
0.本例子是基于jQuery的
1.引入jct包
<!-- 引入jct包 -->
<script type="text/javascript" src="${ctx }/js/jct.js"></script>
<script type="text/javascript" src="${ctx }/js/dateutils.js"></script>
2.通过ajax 传递参数给java
&n ......
其实也不是爬网页,只是从一个XML文件取URL,然后抓取网页内容。
主要有几点,备忘:
1. 全局代理,设置之后所有的URL都使用此代理,这样可以直接调用FileUtils.copyURLToFile:
private void initProxy(String host, int port,
final String username, final String password) {
Authenticator.setDefault(new Aut ......
最近读完<Java并发编程实践>,无疑这是一本好书,它使得我对线程,锁,以及与并发相关的
一些知识体系更加完备,闲话不多说,下面我系统梳理了下里面的一些理论要点,相信实践上
面,大家或多或少都会有体会,那么用理论的知识点将实践体会笼络起来,将会形成更加牢固
和完备的知识体系,至少我这么认为,写这一篇笔记也是用以 ......