自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(23)
  • 收藏
  • 关注

转载 一些代码的收集

FileUtilimport java.io.File;import java.io.IOException;import java.util.List;public class Run {static String path = "C:/Users/Administrator/Desktop/demo/";static String genPath = "

2015-03-07 10:04:23 226

转载 prc

123456

2014-11-06 07:56:39 247

转载 WordDetailScreen update

public class WordDetailScreen extends BaseScreen implements WindowListener, ActionListener { private static final long serialVersionUID = 1L; private WordDetailScreen thisFrame; // Component decla

2014-08-08 07:48:14 233

转载 ComponentUtil

public class ComponentUtil { public static final int LEFT = 0; public static final int LEFT_TOP = 1; public static final int LEFT_CENTER = 2; public static final int LEFT_BOTTOM = 3;

2014-08-06 07:56:08 304

转载 BaseDao

public abstract class BaseDao { private Class entityClass; private T t; protected BeanUtil beanUtil = new BeanUtil(); protected String tableName = ""; @SuppressWarnings("unchecked") public BaseD

2014-08-06 07:54:40 265

转载 WordTestScreenService

public class WordTestScreenService { WordDao wordDao = new WordDao(); BeanUtil beanUtil = new BeanUtil(); private int rightCount = 0; private int errCount = 0; private DecimalFormat df = new Deci

2014-08-06 07:53:59 171

转载 WordSearchScreenService

public class WordSearchScreenService { WordDao wordDao = new WordDao(); BeanUtil beanUtil = new BeanUtil(); public Vector> getWordsByCondition(Map conditionMap, WordSearchScreen thisFrame){ Str

2014-08-06 07:53:29 197

转载 BeanUtil

public class BeanUtil { public String prefix_String = "FLD"; public boolean isNoNeedPrefix = false; public BeanUtil(){} public BeanUtil(boolean isNoNeedPrefix){ this.isNoNeedPrefix = isNoNe

2014-08-06 07:53:00 382

转载 WordDetailScreenService

public class WordDetailScreenService { WordDao wordDao = new WordDao(); BeanUtil beanUtil = new BeanUtil(); public String getTureAttribs(String attrs){ return TextUtil.toTextByChar(attrs, "_",

2014-08-06 07:52:45 187

转载 WordTestingScreen

public class WordTestingScreen extends BaseScreen { private static final long serialVersionUID = 1L; private WordTestingScreen thisFrame; // Component JLabel lbl_previous ; JLabel lbl_showIsRig

2014-08-06 07:51:32 165

转载 WordSearchScreen

public class WordSearchScreen extends BaseScreen{ private static final long serialVersionUID = 1L; private WordSearchScreen thisFrame ; public Map conditionMap = new HashMap(); private WordSearchA

2014-08-06 07:50:58 193

转载 InfoHandler

public class InfoHandler{ private List wordList = new ArrayList(); public List addToWordList(Word word){ if(word !=null){ wordList.add(word); } return wordList; } public List getWordL

2014-08-06 07:50:01 327

转载 WordMiniTestingScreen

public class WordMiniTestingScreen extends BaseScreen implements MouseMotionListener{ private static final long serialVersionUID = 1L; protected float initOpac = 1;//0.45f;// 0.25f; private WordMin

2014-08-06 07:47:46 181

转载 OneLineJTextArea

public class OneLineJTextArea extends JTextArea{ private static final long serialVersionUID = 1L; Integer index = 0; List nList = new ArrayList<>(); Timer timer = new Timer(); TimerTask task = ne

2014-08-06 07:47:30 187

转载 JTableModel

public class JTableModel extends AbstractTableModel { private Vector content = null; private String[] columnName = null; private Object[][] cells; private int rowIndex = -1; pr

2014-08-06 07:46:59 280

转载 WordDetailScreen

public class WordDetailScreen extends BaseScreen implements WindowListener{ private static final long serialVersionUID = 1L; private WordDetailScreen thisFrame; // Component declare private JLabel

2014-08-06 07:46:57 232

转载 WordInputJTextPane

public class WordInputJTextPane extends JTextPane{ private static final long serialVersionUID = 1L; private String rightWordEn =""; public static final Color RIGHT_COLOR = Color.BLUE; public stati

2014-08-06 07:46:06 273

转载 ComponentFactory

public class ComponentFactory { public LineBorder jtextBorder = new LineBorder(new Color(190, 190, 190)); public JTextField getJTextField(){ return getJTextField("",SwingConstants.LEFT); } p

2014-08-06 07:45:28 1425

转载 BaseScreen

public class BaseScreen extends JFrame implements WindowListener,MouseListener { private static final long serialVersionUID = 1L; protected JFrame parentFrame = null; private JFrame subFrame; publ

2014-08-06 07:44:56 270

转载 Constants

public class Constants { public static final String ADD_SIGN = "+"; public static final String AND_SIGN = "&"; public static final String WELL_SIGN = "#"; public static final String AT_SIGN = "@";

2014-08-06 07:42:40 403

转载 WordDao

public class WordDao extends BaseDao{ public int[] updateTestWordsFromCB(List wordList) throws SQLException{ if(wordList == null) throw new IllegalArgumentException("parm wordList is null"); int

2014-08-06 07:41:24 436

转载 AppControler

public class AppControler { public static Dimension ScreenSize; public static String DB_PREFIX=ReadConfig.getKey("DB_PREFIX"); public static String DB_SCHEMA=ReadConfig.getKey("DB_SCHEMA"); stat

2014-08-06 07:39:33 206

转载 Word

public class Word { private Integer fldWordid; private String fldWorden; private String fldWordcn; private String fldSymbol; private String fldAttr; private String fldLasttestdate; private Inte

2014-08-06 07:38:28 217

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除