From bc310b9432ef040f2745f960af9d4038e945160f Mon Sep 17 00:00:00 2001 From: chenlw <874313221@qq.com> Date: Mon, 31 Oct 2016 18:56:57 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B5=8B=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/com/platform/test/BeanCopyTest.java | 18 +++++++- test/com/platform/test/StringIntegerTest.java | 41 +++++++++++++++++++ test/com/platform/test/TestWriteFile.java | 25 +++++++++++ 3 files changed, 82 insertions(+), 2 deletions(-) create mode 100644 test/com/platform/test/StringIntegerTest.java diff --git a/test/com/platform/test/BeanCopyTest.java b/test/com/platform/test/BeanCopyTest.java index 5b84481e..f527aac7 100644 --- a/test/com/platform/test/BeanCopyTest.java +++ b/test/com/platform/test/BeanCopyTest.java @@ -1,8 +1,10 @@ package com.platform.test; +import java.lang.reflect.Field; + import org.junit.Test; -import com.platform.entities.MyFilesEntity; +import com.platform.entities.SqlFileInfoEntity; import com.platform.entities.PreDataInfo; import com.platform.utils.BeanCopy; @@ -16,7 +18,7 @@ public class BeanCopyTest { preDataInfo.setDistrictName("setDistrictName"); preDataInfo.setSysCode(4); preDataInfo.setSysName("sysName"); - MyFilesEntity myfile = new MyFilesEntity(); + SqlFileInfoEntity myfile = new SqlFileInfoEntity(); BeanCopy.copyBean(preDataInfo, myfile, "id"); System.out.println(myfile.getSysName()); @@ -72,5 +74,17 @@ public class BeanCopyTest { } return String.valueOf(result); } + + @Test + public void testFiels() { + PreDataInfo pre = new PreDataInfo(); + Field[] f = pre.getClass().getDeclaredFields(); + for (int i = 0; i < f.length; i++) { + Field tm = f[i]; + tm.setAccessible(true); + System.out.println(tm.getGenericType().toString()); + } + + } } diff --git a/test/com/platform/test/StringIntegerTest.java b/test/com/platform/test/StringIntegerTest.java new file mode 100644 index 00000000..f54ee7f2 --- /dev/null +++ b/test/com/platform/test/StringIntegerTest.java @@ -0,0 +1,41 @@ +package com.platform.test; + +import java.util.Date; + +import org.junit.Test; + +public class StringIntegerTest { + + @Test + public void testString2Int() { + String a = "0"; + String a1 = "1"; + int r = 0; + Date f = new Date(); + int b = Integer.valueOf(a); + int b1 = Integer.valueOf(a1); + for (int i = 0; i < 1000000; i++) { + + r = b & b1; + } + System.out.println(r); + System.out.println("1: "+(new Date().getTime() - f.getTime())); + + String c = "1"; + Date f3 = new Date(); + String d = ""; + for (int i = 0; i < 1000000; i++) { + if (a.equals(a1)){ + if (a.equals(c)) { + d= "1"; + } + } + else { + a = a1; + } + } + System.out.println(d); + System.out.println("2: "+(new Date().getTime() - f3.getTime())); + } + +} diff --git a/test/com/platform/test/TestWriteFile.java b/test/com/platform/test/TestWriteFile.java index e232da75..1e16dff7 100644 --- a/test/com/platform/test/TestWriteFile.java +++ b/test/com/platform/test/TestWriteFile.java @@ -1,6 +1,11 @@ package com.platform.test; +import java.util.Calendar; + +import org.junit.Test; + import com.platform.utils.Configs; +import com.platform.utils.DateForm; import com.platform.utils.FileOperateHelper; public class TestWriteFile { @@ -12,5 +17,25 @@ public class TestWriteFile { "Hello! \r\n"); System.out.println("Hello!"); } + + @Test + public void TestCalendar(){ + Calendar c2 = Calendar.getInstance(); + String time = DateForm.date2StringByDay(c2.getTime()); + System.out.println(time); + System.out.println("----"+c2.get(Calendar.MONTH)); + c2.set(Calendar.MONTH, getMonBeforeHalfYear(c2.get(Calendar.MONTH))); + time = DateForm.date2StringByDay(c2.getTime()); + System.out.println(time); + System.out.println("----"+c2.get(Calendar.MONTH)); + } + + private int getMonBeforeHalfYear(int num){ + num -= 6; + if (num <= 0) { + num = num + 12; + } + return num; + } }