src.main.java.org.kawanfw.sql.util.Base64Test Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aceql-http Show documentation
Show all versions of aceql-http Show documentation
AceQL HTTP is a framework of REST like http APIs that allow to access to remote SQL databases over http from any device that supports http.
AceQL HTTP is provided with three client SDK:
- The AceQL C# Client SDK allows to wrap the HTTP APIs using Microsoft SQL Server like calls in their code, just like they would for a local database.
- The AceQL Java Client JDBC Driver allows to wrap the HTTP APIs using JDBC calls in their code, just like they would for a local database.
- The AceQL Python Client SDK allows SQL calls to be encoded with standard unmodified DB-API 2.0 syntax
/**
*
*/
package org.kawanfw.sql.util;
import java.io.File;
import java.io.IOException;
import java.util.Date;
import org.apache.commons.io.FileUtils;
/**
* @author Nicolas de Pomereu
*
*/
public class Base64Test {
/**
* @param args
*/
public static void main(String[] args) throws IOException {
System.out.println(new Date() + " Begin...");
File file = new File("c:\\test\\proust.txt");
String text = FileUtils.readFileToString(file, "UTF-8");
System.out.println(text);
String originalInput = text;
org.apache.commons.codec.binary.Base64 base64 = new org.apache.commons.codec.binary.Base64(80);
String encodedString = new String(base64.encode(originalInput.getBytes()));
System.out.println(encodedString);
}
}