花间一壶酒

导航

2012年9月12日 #

Log4j使用总结

摘要: 一、介绍Log4j是Apache的一个开放源代码项目,通过使用Log4j,我们可以控制日志信息输送的目的地是控制台、文件、GUI组件、甚至是套接口服务 器、NT的事件记录器、UNIX Syslog守护进程等;我们也可以控制每一条日志的输出格式;通过定义每一条日志信息的级别,我们能够更加细致地控制日志的生成过程。Log4j由三个重要的组件构成:日志信息的优先级,日志信息的输出目的地,日志信息的输出格式。日志信息的优先级从高到低有ERROR、WARN、 INFO、DEBUG,分别用来指定这条日志信息的重要程度;日志信息的输出目的地指定了日志将打印到控制台还是文件中;而输出格式则控制了日志信息的显示 阅读全文

posted @ 2012-09-12 09:48 wrh526 阅读(131) 评论(0) 推荐(0) 编辑

2012年8月28日 #

Java中的java.util.ConcurrentModificationException异常

摘要: 今日折腾半天这个错误:Exception in thread "main" java.util.ConcurrentModificationException at java.util.SubList.checkForComodification(AbstractList.java:752) at java.util.SubList.listIterator(AbstractList.java:682) at java.util.AbstractList.listIterator(AbstractList.java:284) at java.util.SubList.ite 阅读全文

posted @ 2012-08-28 15:55 wrh526 阅读(458) 评论(0) 推荐(0) 编辑

2012年8月3日 #

Java中类型转换

摘要: 编辑器加载中... int -> String int i=12345; String s=""; 第一种方法:s=i+""; 第二种方法:s=String.valueOf(i); 这两种方法有什么区别呢?作用是不是一样的呢?是不是在任何下都能互换呢? String -> int s="12345"; int i; 第一种方法:i=Integer.parseInt(s); 第二种方法:i=Integer.valueOf(s).intValue(); 这两种方法有什么区别呢?作用是不是一样的呢?是不是在任何下都能互换呢? 以 阅读全文

posted @ 2012-08-03 14:34 wrh526 阅读(161) 评论(0) 推荐(0) 编辑

2012年4月16日 #

java 实现堆排序

摘要: package com.wrh.study.dataStructure.heap;/** * The operation of the heap sift up * @author wrh * */public class Heap {// private int[] a; //private int size; /** * sift the element up * @param b the heap * @param i the index of the sifted element */ public int[] sif... 阅读全文

posted @ 2012-04-16 16:03 wrh526 阅读(253) 评论(0) 推荐(0) 编辑

2012年4月10日 #

Java文件读写简单方法

摘要: 本文章提供一个简单的文件读取方法:具体代码如下:package com.wrh.java.microblg.io;/* * FileOperate.java 2012/03/20 * Copyright (c) wrh * Beijing, Chaoyang, 100101 * China * All rights reserved * */import java.io.*;import java.util.ArrayList;/** * The interface of file operate include read files and write files etc. * * @v.. 阅读全文

posted @ 2012-04-10 14:57 wrh526 阅读(200) 评论(0) 推荐(0) 编辑

2012年4月9日 #

Java 实现从控制台接受输入Scanner类

摘要: import java.util.Scanner;public class Input{/*** @param args* author:wrh 2012.04.09*/public static void main(String[] args) { System.out.println("请输入内容:"); Scanner sc = new Scanner(System.in); String input = sc.next(); int a = sc.nextInt();}} 阅读全文

posted @ 2012-04-09 17:20 wrh526 阅读(219) 评论(0) 推荐(0) 编辑

2012年2月21日 #

栈的应用-数制转换

摘要: package com.wrh.lab.dataStructure.stackAndQueue.practise;import com.wrh.lab.dataStructure.stackAndQueue.Stack;import com.wrh.lab.dataStructure.stackAndQueueImpl.LinkedStackImpl;/** * * @author wrh * number system conversion * convert decimal system to other system */public class NumberConversion { . 阅读全文

posted @ 2012-02-21 18:36 wrh526 阅读(202) 评论(0) 推荐(0) 编辑

2012年2月16日 #

二叉树-链式存储-Java实现(未完待续)

摘要: package com.wrh.lab.dataStructure.tree;/** * the node of the binary tree * @author wrh * */public class BinaryNode<E> { private E element; //the element private BinaryNode<E> left; //the left point private BinaryNode<E> right; //the right point /** * build an node * ... 阅读全文

posted @ 2012-02-16 17:29 wrh526 阅读(225) 评论(0) 推荐(0) 编辑

稀疏矩阵转换为三元组

摘要: package com.wrh.lab.dataStructure.arrayAndGenericTable;/** * * @author wrh *SparseMatrix convert to Three Tuple */public class SparseMatrixToThreeTuple { public static void main(String[] args) { int[][] data = { {0,0,0,0,0,0}, {0,3,0,0,0,0}, ... 阅读全文

posted @ 2012-02-16 17:25 wrh526 阅读(715) 评论(0) 推荐(0) 编辑

数组按行/列优先存储转换

摘要: package com。wrh.lab.dataStructure.arrayAndGenericTable;/** * test the array convert * @author wrh * */public class ArrayConvert { public static void main(String[] args) { int[][] data = {{1,2,3,4},{5,6,7,8},{9,10,11,12}}; int[] rowData = new int[12]; int[] colData = new int[... 阅读全文

posted @ 2012-02-16 17:23 wrh526 阅读(499) 评论(0) 推荐(0) 编辑