Java
文章平均质量分 79
「已注销」
这个作者很懒,什么都没留下…
展开
-
Vista下 JDK配置经验
Vista比较变态,配置容易出现,NoClassDef...错误 所以,最好关掉UAC,ClassLoad时,Java.exe 最好和*.class在一个文件夹 还有,Javac.exe不区分大小写,但是Java.exe区分大小写。 个人认为这是JDK一个bug ***** 在 Windows 下设置 Windows 下使用 set 命令设置环境变量,为了使每一次启原创 2009-10-04 02:19:00 · 856 阅读 · 0 评论 -
Java Notes-1
C# has gone on to become a very good language in its own right, enjoying more innovation in recent years than has Java.But Java continues to spread on a wide variety of platforms.原创 2014-11-23 17:48:27 · 817 阅读 · 0 评论 -
Java Notes-4
-Note that the jar command automatically adds a directory called META-INF to ourarchive.-Aside from attributes, you can put a few special values in the manifest file. One of these,Main-Class , a原创 2014-12-01 23:44:15 · 797 阅读 · 1 评论 -
Java Notes-7
-One such related pair of patterns is the conceptof an executor service that manages tasks and that of a thread pool that services tasks inan efficient way.-The new Callable interface, whic原创 2015-01-08 22:51:30 · 1121 阅读 · 0 评论 -
Java Notes-5
-Bounds use the extends keywordand some new syntax to limit the parameter types that may be applied to a generic type.class EmployeeList< T extends Employee & Ranked & Printable > { ... }-As we’ll see in this section, wildcards are Java’s way of introd原创 2014-12-14 16:42:54 · 938 阅读 · 0 评论 -
Java Notes-6
- The wait()and notify() methods of the Object class extend this capability by allowing us toexplicitly coordinate the waiting and running threads. -By executing wait() from a synchronized b原创 2015-01-01 11:19:42 · 856 阅读 · 0 评论 -
Java Notes-8
- The Lock class provides for exclusiveaccess by the owner of the lock by allowing only one party to hold the lock at a timethrough the lock() and unlock() methods. -In addition to the st原创 2015-01-25 21:56:52 · 785 阅读 · 0 评论 -
Java Notes-9
Summary: introduce the collection feature of Java. includes Set. List and Queue原创 2015-04-26 23:40:44 · 1107 阅读 · 0 评论 -
Java Notes-11
Summary:Synchronized and Unsynchronized Collections, Properties原创 2015-05-02 13:19:54 · 882 阅读 · 0 评论 -
Java Notes-12(Preferences API, The Logging API)
Summary:Preferences API, The Logging API原创 2015-05-09 16:40:43 · 1839 阅读 · 0 评论 -
Java Notes-10
The Map Interface, Collection implementations introduction原创 2015-05-01 08:31:44 · 1308 阅读 · 0 评论 -
Java Notes-13(Oberver, Sockets)
Summary: Observer, Sockets原创 2015-11-08 22:45:02 · 670 阅读 · 1 评论 -
Java Notes-14(DateAtHost Client, TinyHttpd Server, Socket Options)
Summary: DateAtHost Client, TinyHttpd Server, Socket OptionsSome deeply introduction of web/network related features in Java原创 2016-02-22 00:10:02 · 660 阅读 · 1 评论 -
Java Notes-15(Proxies, RIM)
Summary: Proxies ProxySelector InetAddress RIM-Some firewalls not only prevent outsiders from getting in, but by default, prevent applications inside the firewall from opening direct socket-level co原创 2016-06-19 23:42:43 · 759 阅读 · 1 评论 -
SQL concept
SQL concept introduction, includes SQL architecture, SQL command, and table related elements原创 2016-10-29 14:55:57 · 566 阅读 · 1 评论 -
Java Notes-2
-In Java, every class defines a new type (data type).-The JComponent class provides the framework for building all kinds of user interfacecomponents. Particular components—such as buttons, labels原创 2014-11-23 22:39:14 · 709 阅读 · 0 评论 -
Java Notes-3
-implements the ActionListener interface in addition toMouseMotionListener . ActionListener requires us to implement an actionPerformed() method that is called whenever an ActionEvent occurs.原创 2014-11-26 23:47:24 · 740 阅读 · 0 评论 -
用exe4j把java打包成exe
<br />在我们写程序的时候,有时会有一种需求,那就是希望我们的程序是一个可执行文件,而不是一个jar文<br />件,其实大部份时候,可执行的jar文件都可以满足要求,但是如果我们的程序是需要保护的,那么打包<br />成jar文件就不太安全了,因为jar文件就是一个解压缩文件,一解压就什么都能看到了,当然也可以选择<br />混淆,但是混淆了以后排错就没那么容易了,因为混淆的时候,把一些类的信息都混淆了。如何既保证代<br />码的安全又容易排错呢?那么打包成exe就是一种很好的办法了,其实我今天介绍原创 2011-05-08 20:52:00 · 1039 阅读 · 0 评论 -
java应用程序开
<br />自己对照着一篇英文写的,很粗糙。凑合看吧,有时间再修改完善了。<br />当你开发一个java客户端应用程序时,不论你使用任何自己心仪的GUI框架(AWT、Swing、SWT),一个时刻萦绕在你脑海里的问题就是:采取什么样方式能方便快捷的把你的应用程序发布给最终用户。<br />我想大多数人都同意客户是否接受你的程序很大程度上依赖于对你的程序的第一印象,而你的的程序的安装过程则是客户接触你程序的第一步。对于java应用程序来说,安装过程的繁琐向来为人所诟病。一般的过程是拷贝所有的类文件或者包文件原创 2010-12-28 11:19:00 · 641 阅读 · 0 评论 -
java下载文件的种方式
<br />public HttpServletResponse download(String path, HttpServletResponse response) {<br /> try {<br /> // path是指欲下载的文件的路径。<br /> File file = new File(path);<br /> // 取得文件名。<br /> String filename = file.g原创 2010-12-29 11:04:00 · 1140 阅读 · 0 评论 -
java 数字转换成字符串
<br />各种数字类型转换成字符串型: <br /><br />String s = String.valueOf( value); // 其中 value 为任意一种数字类型。 <br /><br />字符串型转换成各种数字类型: <br /><br />String s = "169"; <br />byte b = Byte.parseByte( s ); <br />short t = Short.parseShort( s ); <br />int i = Integer.parseInt( s转载 2010-12-29 17:05:00 · 96397 阅读 · 3 评论 -
JavaDoc用法
<br />对于Java注释我们主要了解两种:<br /><br /> // 注释一行<br /><br /> /* ...... */ 注释若干行<br /><br /> 但还有第三种,文档注释:<br /><br /> /** ...... */ 注释若干行,并写入 javadoc 文档<br /><br /> 通常这种注释的多行写法如下:<br /><br /> /**<br /><br /> * .........<br /><br /> * .........<br /><br /转载 2010-12-28 19:20:00 · 1494 阅读 · 0 评论 -
设置一个JTable中某些单元格的背景色
<br />Object [][] data={<br /> {null, null, null, null,null,null,1},<br /> {2, 3, 4, 5, 6, 7, 8},<br /> {9, 10, 11, 12, 13, 14, 15},<br /> {16, 17, 18, 19, 20, 21, 22},<br /> {23, 24, 25, 26, 27, 28, 29},<br /> {30, 31, null, null, null,原创 2010-12-31 14:36:00 · 2681 阅读 · 0 评论 -
Java实现基于http协议的网络文件下载
<br />try {<br /> URL url = new URL(sURL);<br /> //打开连接<br /> HttpURLConnection httpConnection = (HttpURLConnection) url<br /> .openConnection();<br /> //获得文件长度<br /> long nEndPos =getFileSize(sURL);<br /> RandomAccessFile oSavedFile= new RandomAcce转载 2010-12-29 15:15:00 · 1384 阅读 · 0 评论 -
java中判断目录是否存在
<br />Java2008-07-03 15:22:03阅读349评论0 字号:大中小 订阅<br />//判断c:/cache目录是否存在的代码,如果不存在则创建cache目录<br />String path="c://cache";<br />File dirname = new File(path); <br />if (!dirname.isDirectory()) <br />{ //目录不存在 <br /> dirname.mkdir(); //创建目录<br />} <br /原创 2010-12-30 21:53:00 · 13306 阅读 · 1 评论 -
JTable常见用法细则
<br />sitinspring原创,转载请注明作者及出处.<br /><br />JTable是Swing编程中很常用的控件,这里总结了一些常用方法以备查阅.欢迎补充,转载请注明作者与出处.<br /><br />一.创建表格控件的各种方式:<br />1) 调用无参构造函数.JTable table = new JTable();<br /><br />2) 以表头和表数据创建表格.Object[][] cellData = {{"row1-col1", "row1-col2"},{"row2-c转载 2010-12-31 11:52:00 · 962 阅读 · 0 评论 -
带有排序和过滤功能的 JTable((JDK 6.0新功能))
<br /> 在Java SE 6中除了java.awt被更新外,javax.swing同时也有了很大的改进。在C/S程序中我们会经常使用到"表"。如我们可以在查询数据库后将查询结果显示在表格中。在Java中显示表格使用的是JTable类。在以前的版本中,JTable只能简单地显示数据,并没有什么附加的处理功能,而在Java SE 6中的JTable增加了排序和过滤功能。用户可以单击列头进行排序,也可以根据某一列来过滤表中的数据。<br /><br />为了使JTable可以对数据进行,必须将RowSort转载 2010-12-31 13:11:00 · 1363 阅读 · 0 评论 -
Java的事件处理机制
<br />如果用户用鼠标单击了按钮对象button,则该按钮button就是事件源,而java运行时系统会生成ActionEvent类的对象actionE,该对象中描述了该单击事件发生时的一些信息,然后,事件处理者对象将接收由java运行时系统传递过来的事件对象actionE并进行相应的处理。<br /><br /> 由于同一个事件源上可能发生多种事件,因此java采取了授权处理机制(Delegation Model),事件源可以把在其自身所有可能发生的事件分别授权给不同的事件处理者来处理。比如在Can原创 2011-01-01 23:56:00 · 12687 阅读 · 3 评论 -
JFreeChart用法
<br />一、jFreeChart产生图形的流程<br />创建一个数据源(dataset)来包含将要在图形中显示的数据>>创建一个 JFreeChart 对象来代表要显示的图形<br />>>把图形输出<br />重要的类和接口:<br />org.jfree.data.general.Dataset 所有数据源类都要实现的接口<br />org.jfree.chart.ChartFactory 由它来产生 JFreeChart 对象<br />org.jfree.chart.JFreeChart 所有转载 2011-01-10 13:01:00 · 1668 阅读 · 0 评论 -
使用JRadioButtonMenuItem组件
<br />使用JRadioButtonMenuItem组件: <br />JRadioButtonMenuItem的类层次结构图: <br /> java.lang.Object<br /> --java.awt.Component<br /> --java.awt.Container<br /> --javax.swing.JComponent<br /> --javax.swing.AbstractButton<br /> --javax.swing.JM原创 2011-01-29 13:51:00 · 5265 阅读 · 0 评论 -
如何让JToolBar可以正确的自动换行
<br />我在一个JFrame上加了一个工具条和几个按钮,代码如下<br />JFrame frame=new JFrame();<br />frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);<br />JToolBar toolbar=new JToolBar();<br />Container container=frame.getContentPane();<br />container.setLayout(new BorderLayout()转载 2011-02-03 15:31:00 · 3090 阅读 · 0 评论 -
java读取网页信息
<br />import java.io.BufferedReader;<br />import java.io.FileNotFoundException;<br />import java.io.IOException;<br />import java.io.InputStream;<br />import java.io.InputStreamReader;<br />import java.net.HttpURLConnection;<br />import java.net.URL;<br />原创 2011-02-06 09:35:00 · 1089 阅读 · 0 评论 -
Spring Introduction -1
Spring SummarySpring BootSpring Boot 2.0Installation of Spring BootDeveloping Your First Spring Boot ApplicationSpring BootSpring Boot is designed to get you up and running as quickly as possible, w...原创 2019-04-07 16:53:34 · 562 阅读 · 0 评论