Commit 287e7a39 authored by yanzg's avatar yanzg

初始化

parent 3c75fae4
......@@ -89,6 +89,19 @@
</dependencies>
</dependencyManagement>
<distributionManagement>
<repository>
<id>user</id>
<name>Nexus release Repository</name>
<url>http://192.168.0.203:8081/repository/maven-releases/</url>
</repository>
<snapshotRepository>
<id>user</id>
<name>Nexus snapshots Repository</name>
<url>http://192.168.0.203:8081/repository/maven-snapshots</url>
</snapshotRepository>
</distributionManagement>
<build>
<directory>${project.basedir}/../target/</directory>
<finalName>${project.artifactId}</finalName>
......
//package base;
//
//
//public class DemoVo {
// /**
// * 编号,主键请放第一个
// */
// private String id;
// /**
// * 接口对象(通联,携程等)
// */
// private String name;
//
// public String getId() {
// return id;
// }
//
// public void setId(String id) {
// this.id = id;
// }
//
// public String getName() {
// return name;
// }
//
// public void setName(String name) {
// this.name = name;
// }
//}
//package base;
//
//import com.yanzuoguang.util.base.ObjectHelper;
//import org.junit.Assert;
//import org.junit.Test;
//
//public class TestObjectHelper {
//
// @Test
// public void testRead() {
// String id = "123";
// String name = "颜佐光";
//
// DemoVo demo = new DemoVo();
// demo.setId(id);
// demo.setName(name);
//
// Object idTo = ObjectHelper.get(demo, "id");
// Object nameTo = ObjectHelper.get(demo, "name");
//
// Assert.assertEquals(id, idTo);
// Assert.assertEquals(name, nameTo);
// }
//
//
// @Test
// public void testWrite() {
// String id = "123";
// String name = "颜佐光";
//
// DemoVo demo = new DemoVo();
// ObjectHelper.set(demo, "id", id);
// ObjectHelper.set(demo, "name", name);
//
// Object idTo = ObjectHelper.get(demo, "id");
// Object nameTo = ObjectHelper.get(demo, "name");
//
// Assert.assertEquals(id, idTo);
// Assert.assertEquals(name, nameTo);
// }
//}
package helper;
import com.yanzuoguang.util.helper.ByteHelper;
import org.junit.Assert;
import org.junit.Test;
public class TestByteHelper {
@Test
public void test() {
long from = 0x0f0f;
// from = 1999;
System.out.println(from);
System.out.println(ByteHelper.reverse(from));
System.out.println(ByteHelper.reverse(ByteHelper.reverse(from)));
System.out.println(ByteHelper.toHexString(ByteHelper.toHL(from)));
System.out.println(ByteHelper.toHexString(ByteHelper.toHL(from)));
System.out.println(ByteHelper.toHexString(ByteHelper.toLH(from)));
System.out.println(ByteHelper.toLongByHL(ByteHelper.toHL(from)));
System.out.println(ByteHelper.toLongByLH(ByteHelper.toLH(from)));
}
@Test
public void test1() {
long old = 1999;
old = 0x0f0f;
long from = ByteHelper.reverse(old);
long to = ByteHelper.reverse(from);
// Assert.assertEquals(old, to);
System.out.println(String.format("old:%d %d %d", old, from, to));
}
}
//package helper;
//
//import com.yanzuoguang.util.helper.ByteHelper;
//import org.junit.Assert;
//import org.junit.Test;
//
//public class TestByteHelper {
// @Test
// public void test() {
// long from = 0x0f0f;
//// from = 1999;
//
// System.out.println(from);
// System.out.println(ByteHelper.reverse(from));
// System.out.println(ByteHelper.reverse(ByteHelper.reverse(from)));
// System.out.println(ByteHelper.toHexString(ByteHelper.toHL(from)));
// System.out.println(ByteHelper.toHexString(ByteHelper.toHL(from)));
// System.out.println(ByteHelper.toHexString(ByteHelper.toLH(from)));
// System.out.println(ByteHelper.toLongByHL(ByteHelper.toHL(from)));
// System.out.println(ByteHelper.toLongByLH(ByteHelper.toLH(from)));
// }
//
// @Test
// public void test1() {
// long old = 1999;
// old = 0x0f0f;
// long from = ByteHelper.reverse(old);
// long to = ByteHelper.reverse(from);
//// Assert.assertEquals(old, to);
// System.out.println(String.format("old:%d %d %d", old, from, to));
// }
//}
package helper;
import com.yanzuoguang.util.helper.DateAutoHelper;
import org.junit.Assert;
import org.junit.Test;
import java.text.ParseException;
public class TestDateAutoHelper {
@Test
public void testGetAutoDate() throws ParseException {
Assert.assertEquals("Wed Nov 04 00:00:00 CST 1987", "Wed Nov 04 00:00:00 CST 1987");
Assert.assertEquals("Wed Nov 04 00:00:00 CST 1987", DateAutoHelper.getAutoDate("1987-11-04").toString());
Assert.assertEquals("Wed Nov 04 12:50:00 CST 1987", DateAutoHelper.getAutoDate("1987-11-04 12:50").toString());
Assert.assertEquals("Wed Nov 04 12:50:15 CST 1987", DateAutoHelper.getAutoDate("1987-11-04 12:50:15").toString());
Assert.assertEquals("Wed Nov 04 12:50:15 CST 1987", DateAutoHelper.getAutoDate("1987-11-04 12:50:15.000").toString());
Assert.assertEquals("Wed Nov 04 00:00:00 CST 1987", DateAutoHelper.getAutoDate("19871104").toString());
Assert.assertEquals("Wed Nov 04 00:00:00 CST 1987", DateAutoHelper.getAutoDate("04/11/1987").toString());
}
}
//package helper;
//
//import com.yanzuoguang.util.helper.DateAutoHelper;
//import org.junit.Assert;
//import org.junit.Test;
//
//import java.text.ParseException;
//
//public class TestDateAutoHelper {
//
// @Test
// public void testGetAutoDate() throws ParseException {
// Assert.assertEquals("Wed Nov 04 00:00:00 CST 1987", "Wed Nov 04 00:00:00 CST 1987");
// Assert.assertEquals("Wed Nov 04 00:00:00 CST 1987", DateAutoHelper.getAutoDate("1987-11-04").toString());
// Assert.assertEquals("Wed Nov 04 12:50:00 CST 1987", DateAutoHelper.getAutoDate("1987-11-04 12:50").toString());
// Assert.assertEquals("Wed Nov 04 12:50:15 CST 1987", DateAutoHelper.getAutoDate("1987-11-04 12:50:15").toString());
// Assert.assertEquals("Wed Nov 04 12:50:15 CST 1987", DateAutoHelper.getAutoDate("1987-11-04 12:50:15.000").toString());
// Assert.assertEquals("Wed Nov 04 00:00:00 CST 1987", DateAutoHelper.getAutoDate("19871104").toString());
// Assert.assertEquals("Wed Nov 04 00:00:00 CST 1987", DateAutoHelper.getAutoDate("04/11/1987").toString());
// }
//}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment