- 浏览: 478735 次
- 性别:
- 来自: 北京
最新评论
-
pyl574069214:
1楼的方法可用
iText操作错误:PdfReader not opened with owner password -
pyl574069214:
谢谢
iText操作错误:PdfReader not opened with owner password -
ggyyso:
解决方法:import java.lang.reflect.F ...
iText操作错误:PdfReader not opened with owner password -
思念-悲伤:
谢了!!!
Exception loading sessions from persistent storage -
u012380013:
加上bos.flush(); 是成功的
Java解压缩zip文件
文章列表
话说二零零九年一月份的某日
俺搞到了一张动车组的火车票
但时间上不合适 于是想卖之
刚在火车票网发布信息几分钟
偶的电话就响了 有人说想买
他问俺多少钱卖 票价是206
俺就说180吧 很痛快的说的
那人听了很高兴 就问俺在哪
于是告诉了他地址 耐心等之
俺是这么算的 去火车站退票
手续费20%的话 还得40多
这样即使180卖了 俺也不亏
过了一会 他来了 付钱交货
然后各回各家 这样票就卖了
卖完了以后 告诉了同事朋友
他们都说俺傻 哪有降价卖的
俺想想也是 现在是非常时期
加上几块钱 凑个整数卖210
也不能算倒票 ...
感觉讲的挺深的,有些都没怎么看懂,以后再看一下。总之,感觉写的挺好的,也挺有收获的。
在线阅读:http://www.cnblogs.com/leadzen/archive/2008/02/25/1073404.html
下面是我自己制作的pdf电子书。
Spring的IoC学习
- 博客分类:
- Spring
Spring提供两种IoC容器
• BeanFactory• ApplicationContext
如果构造器注入和setter方法注入都注入了同一个属性,并且值不一样,会怎样?
public class User {
private String username;
private String password;
public Test(String username) { ...
JavaScript的变量型函数和定义型函数
1. JavaScript的函数类型
变量型函数
var test = function(){
}
定义型函数
function test(){
}
2. 测试代码1
<script>
var test = function(){
alert("first");
}
test();
test = function(){
alert("second");
}
test();
</script>
...
java中final关键字的使用
- 博客分类:
- Java
java中final关键字的使用 1. 用final修饰基本数据类型
public class Test {
public void test() {
final int a = 2;
a = 3;
final String s = "2";
s = "3";
}
public void test(final int a, final String s) {
...
2008年的时候,期待奥运会的开幕;
2009年时,期盼建国六十周年大阅兵;
现在到了2010年,该期待什么事情的发生呢?
上海世博会么,为啥感觉离自己很远、没多大关系呢?
还是希望鲁能亚冠、中超双丰收,中国足球越来越好呢?
还是希望自己能发展的更好吧,同时也对个人问题抓抓紧。
另外,每天买注彩票吧,也许能中奖呢,哈哈。
当然前提是别忘记买了,因为没这个习惯。
发现还是健康最好啊,身体健健康康真好,得了啥病都会难受。
感觉自己今年会走运的,希望能有好运吧,哈哈!
如下面代码
public class Test1
{
public static void main(String[] args)
{
Test2 t2 = new Test2();
System.out.println();
Test3 t3 = new Test3();
}
}
class Test2
{
static
{
System.out.println("Test2 static");
}
public Test2()
{
System.out.println("T ...
代码如下:
public class Test1
{
public static void main(String[] args)
{
C c = new C();
try
{
c.getExcC();
}catch(Exception e)
{
System.out.println(e.getClass().getName());
}
}
}
class Aexception extends Exception
{
}
class Bexception extends Exce ...
如下面代码
public class Test
{
public static int a = 2;
public static void main(String[] args)
{
Test t = new Test();
t = null;
System.out.println(t.a);
}
}
输出为:
2
下面的代码
public class Test
{
public static int a = 2;
public int b = 3;
public sta ...
代码如下,但是感觉不太好。
public class MoneyConvert
{
private final String[] str1 = {"元", "拾", "佰", "仟", "万", "拾", "佰", "仟", "亿"};
private final String[] str2 = {"零", "壹", "贰", " ...
如下面代码:
public class Test
{
public static void main(String[] args)
{
Test t = new Test();
t.show();
}
public void show()
{
int a = 0;
while(true)
{
try
{
if(a++ == 0)
throw new MyException();
System.out.println("No Exception" ...
如下面代码:
public class Test
{
static int a = 0;
public Test()
{
a++;
}
public static void main(String[] args)
{
Test t1 = new Test();
Test t2 = new Test();
System.out.println(t1.a);
System.out.println(t2.a);
System.out.println(a);
System.out.println(Test ...
如下面代码:
public class Test
{
public static void main(String[] args)
{
TestA ta = new TestC();
ta.show();
}
}
class TestA
{
public TestA()
{
System.out.println("TestA");
}
public void show()
{
System.out.println("TestA.show");
}
}
class ...
如下面代码:
public class OuterInnerTest
{
public static void main(String[] args)
{
//1
Outer outer = new Outer();
outer.show();
//2
Outer.Inner inner = outer.getInner();
inner.show();
//3
Outer.Inner inner2 = outer.new Inner();
inner2.show();
}
}
class Out ...
如下:
public class Test
{
public static void main(String[] args)
{
Test t = new Test();
t.compare();
t.compare2();
}
public void compare()
{
//1
Integer i1 = new Integer(1);
Integer i2 = new Integer(1);
Integer i3 = i1;
System.out.println(i1 == i2);
...