- 浏览: 854349 次
- 性别:
- 来自: 深圳
-
最新评论
-
shua1991:
已阅,我表示同意。
Eclipse统计代码行数 -
nakedou:
写的不错,挺详细的
在CentOS中使用 yum 安装MongoDB及服务器端配置 -
sjp524617477:
好方法
Eclipse统计代码行数 -
simpletrc:
<script>ale ...
Java写到.txt文件,如何实现换行 -
csdn_zuoqiang:
Apache Ftp Server,目前是1.0.4,非常好的 ...
Apache FtpServer在64位系统下服务不能启动解决方法
文章列表
批量删除删除CVS文件夹
- 博客分类:
- 代码片段
@echo On
@Rem C:/Users/XPanda/ (此处修改成你要删除CVS文件的路径)
@PROMPT [Com]#
@for /r . %%a in (.) do @if exist "%%a\CVS" rd /s /q "%%a\CVS"
@Rem for /r . %%a in (.) do @if exist "%%a\CVS" @echo "%%a\CVS"
@echo Mission Completed.
@pause
public class TabPagePanel extends JPanel
中添加以下代码即可:
// 设置Focus到KeyTextField
addComponentListener(new ComponentAdapter() {
@Override
public void componentShown(ComponentEvent e) {
getTopPanel().getKeywordTxtField().requestFocusInWindow();
};
});
package view.retrieve.comps.center;
import java.awt.BorderLayout;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import javax.swing.AbstractAction;
import javax.swing.DefaultListModel;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
im ...
今天在使用JButton的时候,想用setText()setIcon()setAction()这三个方法来设置文本,图标和事件,结果发现事件添加之后,文本和图标不显示了。
见http://kingcean.iteye.com/blog/1262009
这里对快捷键,文本,备注,图标都进行了设置。
所以可以考虑修改原有代码,不直接对button进行操作,而对action进行操作,或者setAction在最前,在这个之后对文本和图标进行设置。
或可以使用actionListener代替action。
package ui;
import java.awt.Color;
import java.awt.Font;
import java.awt.FontMetrics;
import java.awt.GradientPaint;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Insets;
import java.awt.Paint;
import java.awt.Rectangle;
import java.awt.event.MouseEvent;
import ja ...
package com.retrieve.utils;
import java.io.PrintStream;
import java.io.PrintWriter;
/**
* @Description An exception for the lucene search.
* <p>
* It can handle nested exceptions. Nested exceptions will be
* printed with the stacktrace.
* ...
Invalid command: InetLoad::load
You have to put InetLoad.dll in the NSIS\Plugins folder.
In a previous tip, I discussed a simple file copy algorithm in context to the best way to move a directory of files (see IO: Moving a Directory ). The algorithm I posted was something of this sort:
public static void copyFile(File source, File dest) throws IOException {
if(!dest.exists()) {
d ...
步骤一:
找一个带有WinPE的系统光盘(我用的Ghost XP SP3 V16.0版本),通过光盘启动进入WinPE系统。
(我的Lenovo Y470,进入WinPE后无法查看系统硬盘。解决方法:
SATA的硬盘可能会让你的PE找不到,方法是修改BIOS中的SATA设定,找到后把后面的AHCI改成IDE(好像是这个名,基本就是上下选择,选择
不是AHCI的那个值),有些硬盘值可能是RAD,具体不同的硬盘不同修改值。然后保存退出,这样再用PE系统或者dos就能认到硬盘了,为下面的修改文
件做好准备。注意,修改后直接进入系统可能会导 ...
package PreD.utils;
import java.awt.event.InputEvent;
import java.awt.event.KeyEvent;
import java.io.UnsupportedEncodingException;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.text.BreakIterator;
import java.util.ArrayList;
import java.util. ...
http://hi.baidu.com/whicss/blog/item/d1e7d819efbc1a76dbb4bd03.html
Alignments
JGoodies Forms 允許元件排列:水平 – left、center、right
垂直 – top、center、bottom
並且可以填滿 (fill) 一個或多個cell之中有用的空間。
FormLayout layout = new FormLayout( "left:pref, 15px, center:pref, 15px, right:pref, ...
public static void main(String[] args) {
String current = args[0];
Days currentDay = Days.valueOf(current.toUpperCase());
switch (currentDay) {
case MONDAY:
case TEUSDAY:
case WEDNESDAY:
System.out.println("boring");
br ...
××××××××××××××××××××××××××××××××××××××××××××××
在实际开发过程中会经常使用JTree组件,平时会遇到这样或那样的问题,在此将偶得一点经验写下来,与大家共享,希望对大家有所帮助。
private JTree jtNetDevice;//数组件申明
private JScrollPane jspTree;//滚动面板申明
1、初始化
DefaultMutableTreeNode rootNode = new DefaultMutableTreeNode("root");
jtNetDevice = ne ...
对于学习使用Java Swing JTable 最好的实例!!!
关键词:JTable,TableCellRenderer,Custom,implements 。。。
*Renderer implements TableCellRenderer
直接导入Eclipse工程即可查看示例。