Package com.alibaba.fastjson.util

Examples of com.alibaba.fastjson.util.Base64


import com.alibaba.fastjson.util.Base64;

public class Base64Test2 extends TestCase {

    public void test_base64_2() throws Exception {
        new Base64();
        String text = "";
        for (int i = 0; i < 1000; ++i) {
            byte[] bytes = text.getBytes("UTF-8");
            {
                String str = com.alibaba.json.test.Base64.encodeToString(bytes, true);
View Full Code Here

TOP

Related Classes of com.alibaba.fastjson.util.Base64

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.