반응형

BSON

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
BSONObject doc = new BasicBSONObject();
doc.put("name""MongoDB");
doc.put("type""database");
doc.put("count"1);
BSONObject info = new BasicBSONObject();
info.put("x"203);
info.put("y"102);
doc.put("info", info);
        
BasicBSONEncoder encoder = new BasicBSONEncoder();
byte[] encoded = encoder.encode(doc);
for(int i = 0; i < encoded.length ; i++
System.out.print(String.format("0x%02X ", encoded[i]));
        
System.out.println();
        
BasicBSONDecoder decoder = new BasicBSONDecoder();
BSONObject decoded = decoder.readObject(encoded);
System.out.println("decoded = " + decoded);
cs


반응형

'IT > 언어' 카테고리의 다른 글

[LIB] STRUT2  (0) 2014.05.19
[LIB] JSON  (0) 2014.05.19
BSON 이해하기  (0) 2014.05.14
텍스트 파일 입출력 Example  (0) 2014.01.27
[펌][WEB] ajax 크로스도메인 설정~~  (0) 2013.12.18

+ Recent posts