當前位置: 首頁>>代碼示例>>Java>>正文


Java JSON.defaultLocale方法代碼示例

本文整理匯總了Java中com.alibaba.fastjson.JSON.defaultLocale方法的典型用法代碼示例。如果您正苦於以下問題:Java JSON.defaultLocale方法的具體用法?Java JSON.defaultLocale怎麽用?Java JSON.defaultLocale使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在com.alibaba.fastjson.JSON的用法示例。


在下文中一共展示了JSON.defaultLocale方法的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: test_time

import com.alibaba.fastjson.JSON; //導入方法依賴的package包/類
public void test_time() throws Exception {
    long millis = System.currentTimeMillis();
    
    SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd", JSON.defaultLocale);
    format.setTimeZone(JSON.defaultTimeZone);
    String text = format.format(new java.util.Date(millis));
    text += "T";
    
    SimpleDateFormat format2 = new SimpleDateFormat("HH:mm:ss.SSS", JSON.defaultLocale);
    format2.setTimeZone(JSON.defaultTimeZone);
    text += format2.format(new java.util.Date(millis));
    
    Assert.assertNull(JSON.parseObject("null", Time.class));
    Assert.assertNull(JSON.parseObject("\"\"", Time.class));
    Assert.assertNull(JSON.parseArray("null", Time.class));
    Assert.assertNull(JSON.parseArray("[null]", Time.class).get(0));
    Assert.assertNull(JSON.parseObject("{\"value\":null}", VO.class).getValue());
    
    Assert.assertEquals(new Time(millis), JSON.parseObject("" + millis, Time.class));
    Assert.assertEquals(new Time(millis), JSON.parseObject("{\"@type\":\"java.sql.Time\",\"val\":" + millis + "}", Time.class));
    Assert.assertEquals(new Time(millis), JSON.parseObject("\"" + millis + "\"", Time.class));
    Assert.assertEquals(new Time(millis), JSON.parseObject("\"" + text + "\"", Time.class));
    
    //System.out.println(JSON.toJSONString(new Time(millis), SerializerFeature.WriteClassName));
    
}
 
開發者ID:weiwenqiang,項目名稱:GitHub,代碼行數:27,代碼來源:TimeDeserializerTest.java

示例2: test_0

import com.alibaba.fastjson.JSON; //導入方法依賴的package包/類
public void test_0() throws Exception {
    Date date = new Date();
    String text = JSON.toJSONString(date, mapping);
    SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd", JSON.defaultLocale);
    format.setTimeZone(JSON.defaultTimeZone);
    SimpleDateFormat format2 = new SimpleDateFormat("yyyy-MM-dd", JSON.defaultLocale);
    format2.setTimeZone(JSON.defaultTimeZone);
    Assert.assertEquals(JSON.toJSONString(format.format(date)), text);
    Assert.assertEquals(JSON.toJSONString(format2.format(date)), text);
}
 
開發者ID:weiwenqiang,項目名稱:GitHub,代碼行數:11,代碼來源:SimpleDataFormatSerializerTest.java

示例3: test_codec_no_asm

import com.alibaba.fastjson.JSON; //導入方法依賴的package包/類
public void test_codec_no_asm() throws Exception {
    V0 v = new V0();
    v.setValue(new Date());

    SerializeConfig mapping = new SerializeConfig();
    mapping.put(Date.class, new SimpleDateFormatSerializer("yyyy-MM-dd"));
    mapping.setAsmEnable(false);

    String text = JSON.toJSONString(v, mapping, SerializerFeature.WriteMapNullValue);
    SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd", JSON.defaultLocale);
    format.setTimeZone(JSON.defaultTimeZone);
    Assert.assertEquals("{\"value\":" + JSON.toJSONString(format.format(v.getValue())) + "}", text);
}
 
開發者ID:weiwenqiang,項目名稱:GitHub,代碼行數:14,代碼來源:DateFieldTest3.java

示例4: test_0

import com.alibaba.fastjson.JSON; //導入方法依賴的package包/類
public void test_0() throws Exception {
	SerializeConfig config = new SerializeConfig();
	config.put(Date.class, new SimpleDateFormatSerializer("yyyy-MM-dd"));
	config.setAsmEnable(false);

	Entity object = new Entity();
	object.setValue(new Date());
	String text = JSON.toJSONString(object, config);
	SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd", JSON.defaultLocale);
       format.setTimeZone(JSON.defaultTimeZone);
	Assert.assertEquals("{\"value\":\"" + format.format(object.getValue()) + "\"}", text);
}
 
開發者ID:weiwenqiang,項目名稱:GitHub,代碼行數:13,代碼來源:DateFieldTest7.java

示例5: test_date

import com.alibaba.fastjson.JSON; //導入方法依賴的package包/類
public void test_date() throws Exception {
    String text = "{\"value\":\"1979-07-14\"}";
    VO vo = JSON.parseObject(text, VO.class);
    
    SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd", JSON.defaultLocale);
    dateFormat.setTimeZone(JSON.defaultTimeZone);
    Assert.assertEquals(vo.getValue(), dateFormat.parse("1979-07-14").getTime());
}
 
開發者ID:weiwenqiang,項目名稱:GitHub,代碼行數:9,代碼來源:DateParseTest10.java

示例6: test_codec_no_asm

import com.alibaba.fastjson.JSON; //導入方法依賴的package包/類
public void test_codec_no_asm() throws Exception {
    V0 v = new V0();
    v.setValue(new Date());

    SerializeConfig mapping = new SerializeConfig();
    mapping.setAsmEnable(false);

    String text = JSON.toJSONString(v, mapping, SerializerFeature.WriteMapNullValue);
    SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd", JSON.defaultLocale);
    format.setTimeZone(JSON.defaultTimeZone);
    Assert.assertEquals("{\"value\":" + JSON.toJSONString(format.format(v.getValue())) + "}", text);
}
 
開發者ID:weiwenqiang,項目名稱:GitHub,代碼行數:13,代碼來源:DateFieldTest2.java

示例7: test_codec_asm

import com.alibaba.fastjson.JSON; //導入方法依賴的package包/類
public void test_codec_asm() throws Exception {
    V0 v = new V0();
    v.setValue(new Date());
    
    SerializeConfig mapping = new SerializeConfig();
    mapping.put(Date.class, new SimpleDateFormatSerializer("yyyy-MM-dd"));
    mapping.setAsmEnable(true);
    
    String text = JSON.toJSONString(v, mapping, SerializerFeature.WriteMapNullValue);
    SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd", JSON.defaultLocale);
    format.setTimeZone(JSON.defaultTimeZone);
    Assert.assertEquals("{\"value\":" + JSON.toJSONString(format.format(v.getValue())) + "}", text);
}
 
開發者ID:weiwenqiang,項目名稱:GitHub,代碼行數:14,代碼來源:DateFieldTest3.java

示例8: setUp

import com.alibaba.fastjson.JSON; //導入方法依賴的package包/類
protected void setUp() throws Exception {
    JSON.defaultTimeZone = TimeZone.getTimeZone("Asia/Shanghai");
    JSON.defaultLocale = Locale.CHINA;
}
 
開發者ID:weiwenqiang,項目名稱:GitHub,代碼行數:5,代碼來源:DateFieldTest3.java


注:本文中的com.alibaba.fastjson.JSON.defaultLocale方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。