淡定从容,宁静致远
全部博文(329)
发布时间:2015-12-09 15:41:56
1.在线打开Base64的编码器将图片编码成Base64例如:我在网上用的图像编码器Base64的地址:http://www.vgot.net/test/image2base64.php2.将需要编码的图片编码成 Base64 代码。3.在html文件图片所在的src=""中添加data:image/jpg;base64,(注:这里是jpg格式,你可以改写成你编码图片的类型)4.将你编码的Base64代码复.........【阅读全文】
发布时间:2015-11-26 17:23:04
package com.test;import java.io.FileInputStream;import java.io.IOException;import java.io.InputStream;import java.util.Properties;/** * description: * @author: matd * @version: v1.0 */public class ConfigTest {private static Properties properties;static {Stri.........【阅读全文】
发布时间:2015-11-16 09:14:23
public class Common {private static Properties properties;static {try {properties = new Properties();InputStream in = Common.class.getClassLoader().getResourceAsStream("config.properties");properties.load(in);} catch (IOException e) {e.printStackTrace();}}public static String getProperty.........【阅读全文】
发布时间:2015-11-10 10:14:42
private static Properties properties;static {try {properties = new Properties();String filePath = System.getProperty("user.dir") + "/config/config.properties";InputStream in = new BufferedInputStream(new FileInputStream(filePath));properties.load(in);} catch (IOException e) {e.printStackTrac.........【阅读全文】