//查詢操做jdbc.properties package testjdbc; import java.io.IOException; import java.io.InputStream; import java.util.Properties; public class JDBCProperties { public static void main(String[] args) throws IOException { jdbc_Properties("jdbc.properties"); } public static void jdbc_Properties(String PropertiesName) throws IOException{ Properties pro = new Properties();//屬性集合對象 // URL url = Thread.currentThread().getContextClassLoader().getResource("prop.properties");//獲取項目中文件的路徑 InputStream path =Thread.currentThread().getContextClassLoader().getResourceAsStream(PropertiesName);//獲取路徑並轉換成流 // FileInputStream fis = new FileInputStream("屬性文件建立在電腦上"); try { // pro.load(fis);//將屬性文件流裝載到Properties對象中 pro.load(path); // fis.close(); System.out.println(pro.getProperty("jdbc.default_db.driver")); System.out.println(pro.getProperty("jdbc.default_db.url")); System.out.println(pro.getProperty("jdbc.default_db.username")); System.out.println(pro.getProperty("jdbc.default_db.password")); System.out.println(pro.getProperty("jdbc.sql2000_db.driver")); System.out.println(pro.getProperty("jdbc.sql2000_db.url2")); System.out.println(pro.getProperty("jdbc.sql2000_db.username")); System.out.println(pro.getProperty("jdbc.sql2000_db.password")); /* pro.setProperty("shuzi", "1111");//往屬性文件插值 System.out.println(pro.getProperty("shuzi"));*/ } catch (IOException e) { e.printStackTrace(); System.out.println(pro.getProperty("讀取文件jdbc.properties異常")); }finally{ path.close(); } } } ========================================================================================= //用定時器定時執行main方法 package synthesizeTest; import java.io.IOException; import java.sql.SQLException; import java.util.Timer; import ThreadTime.MyTask; public class synthesize{ public static void main(String[] args) throws IOException, SQLException{ //定時器 Timer t = new Timer(); // 定義任務 MyTask myTask = new MyTask(); // 設置任務的執行,5秒後開始,每5秒重複調用一次 t.schedule(myTask, 0, 5000); /* * MySQL的JDBC URL編寫方式:jdbc:mysql://主機名稱:鏈接端口/數據庫的名稱?參數=值 * 避免中文亂碼要指定useUnicode和characterEncoding * 執行數據庫操做以前要在數據庫管理系統上建立一個數據庫,名字本身定, * 下面語句以前就要先建立javademo數據庫 * */ /*Connection conn = null; String sql; String url = "jdbc:mysql://localhost:3306/javademo?user=root&password=zhxush&useUnicode=true&characterEncoding=UTF8"; try { // 之因此要使用下面這條語句,是由於要使用MySQL的驅動,因此咱們要把它驅動起來, // 能夠經過Class.forName把它加載進去,也能夠經過初始化來驅動起來,下面三種形式均可以 Class.forName("com.mysql.jdbc.Driver");// 動態加載mysql驅動 // com.mysql.jdbc.Driver driver = new com.mysql.jdbc.Driver(); // new com.mysql.jdbc.Driver(); System.out.println("成功加載MySQL驅動程序"); // 一個Connection表明一個數據庫鏈接 conn = DriverManager.getConnection(url); // Statement裏面帶有不少方法,好比executeUpdate能夠實現插入,更新和刪除等 Statement stmt = conn.createStatement(); sql = "create table student(id char(100),name varchar(20),age varchar(20),sex varchar(20),primary key(id))"; int result = stmt.executeUpdate(sql);// executeUpdate語句會返回一個受影響的行數,若是返回-1就沒有成功 if (result != -1) { System.out.println("建立數據表成功"); sql = "insert into student(id,name,age,) values("+ +","+ +","+ +","+ +")"; result = stmt.executeUpdate(sql); sql = "insert into student(NO,name) values('2012002','周小俊')"; result = stmt.executeUpdate(sql); sql = "select * from student"; ResultSet rs = stmt.executeQuery(sql);// executeQuery會返回結果的集合,不然返回空值 System.out.println("id\t\t\t\t\t\t姓名\t\t年齡\t\t性別"); while (rs.next()) { System.out.println(rs.getString(1) + "\t" + rs.getString(2)+"\t"+rs.getString(3)+"\t"+rs.getString(4));// 入若是返回的是int類型能夠用getInt() } } } catch (SQLException e) { System.out.println("MySQL操做錯誤"); e.printStackTrace(); } catch (Exception e) { e.printStackTrace(); } finally { conn.close(); }*/ /*//存放照片的文件路徑 File file = new File("D:/test/"); //存放照片的文件 File [] files = file.listFiles(); InputStream fis = null; byte[] imageByteArray = null; //把圖片寫入字節流寫入photo.txt FileWriter fileWriter=new FileWriter("D:/test/photo.txt"); BASE64Encoder encoder = new BASE64Encoder(); for (int i = 0; i < files.length; i++){ //File file1 = files[i]; try { fis = new FileInputStream(files[i]); imageByteArray= IOUtils.toByteArray(fis); encoder.encode(imageByteArray); //System.out.println("字節流:"+encoder); //當文件是圖片文件時將圖片轉換成64位字節流,而後讀入photo.txt String fileName = files[i].getName(); if(fileName.trim().toLowerCase().endsWith(".png")||fileName.trim().toLowerCase().endsWith(".jpg")||fileName.trim().toLowerCase().endsWith(".jpeg")) { //System.out.println("是圖片"+i+"文件"+fileName); fileWriter.write(String.valueOf(encoder)+" "); //解碼,看是否能獲取圖片 BASE64Decoder decoder = new BASE64Decoder(); byte[] bytes = decoder.decodeBuffer(String.valueOf(encoder)); byteImage(bytes,path); } //System.out.println("字節流:"+fileName); } catch (FileNotFoundException e) { // TODO Auto-generated catch block e.printStackTrace(); }finally{ fis.close(); imageByteArray.clone(); } } fileWriter.flush(); fileWriter.close(); */ } //byte數組到圖片 /* public static void byteImage(byte[] data,String path) throws IOException{ if(data.length<3||path.equals("")) return; //FileWriter fileWriter= new FileWriter(path); try{ //FileImageOutputStream imageOutput = new FileImageOutputStream(fileWriter); OutputStream os = new FileOutputStream(String.valueOf(path)); os.write(data);//將字節一個個寫入文件 //imageOutput.write(data, 0, data.length); //imageOutput.close(); os.close(); //System.out.println("地址:" + path); } catch(Exception ex) { System.out.println("Exception:" + ex); ex.printStackTrace(); } }*/ } ------------------------------------------------------- // 該處是吧圖片轉爲64位字節符(還存在着問題) package synthesizeTest; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import sun.misc.BASE64Decoder; import sun.misc.BASE64Encoder; import ThreadTime.MyTask; public class test { public static void main(String[] args) { test myTask = new test(); try { //myTask.readPhoto1(); myTask.writePhoto(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } public void readPhoto () throws IOException{ InputStream inputStream = new FileInputStream("D:/test/補充任務.jpg"); OutputStream outputStream=new FileOutputStream("D:/test/補充任務1.jpg"); BASE64Encoder encoder = new BASE64Encoder(); byte[] imageByteArray = new byte[inputStream.available()]; inputStream.read(imageByteArray); //encoder.encode(imageByteArray); BASE64Decoder decoder = new BASE64Decoder(); byte[] byteTxt = decoder.decodeBuffer(encoder.encode(imageByteArray)); outputStream.write(byteTxt); inputStream.close(); outputStream.close(); } public void readPhoto1() throws IOException{ InputStream inputStream = new FileInputStream("D:/test/補充任務.jpg"); OutputStream outputStream=new FileOutputStream("D:/test/photo.txt"); BASE64Encoder encoder = new BASE64Encoder(); byte[] imageByteArray = new byte[inputStream.available()]; inputStream.read(imageByteArray); encoder.encode(imageByteArray); outputStream.write(imageByteArray); inputStream.close(); outputStream.close(); } public void writePhoto () throws IOException{ OutputStream outputStream = new FileOutputStream("D:/test/補充任務1.jpg"); InputStream inputStream=new FileInputStream("D:/test/photo.txt"); byte[] imageByteArray = new byte[inputStream.available()]; inputStream.read(imageByteArray); String s = imageByteArray.toString(); BASE64Decoder decoder = new BASE64Decoder(); byte[] byteTxt = decoder.decodeBuffer(s); for (int i=0;i<byteTxt.length;++i){ if(byteTxt[i]<0){ byteTxt[i]+=256; } } outputStream.write(imageByteArray); inputStream.close(); outputStream.flush(); outputStream.close(); } } -------------------------------------------------------------------- //用ireport寫成模板用java生成PDF package PDFTest; import java.io.File; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date; import java.util.HashMap; import java.util.Map; import com.tecsun.framework.unitl.Report; public class CreatePDF { public static void main(String[] args){ createPDF("D:/test/content.jasper","D:/test/"); } public static void createPDF(String modelFile,String tempDir){ // String modelFile = null;//模板文件路徑 //String tempDir = null;//生成pdf文件目錄 File tempDirFile = new File(tempDir); if (!tempDirFile.exists()) { tempDirFile.mkdirs(); } CreatePdfVO createPdfVO = new CreatePdfVO(); Map<String, String> reportData = new HashMap<String, String>(); /*reportData.put("id", CreatePDF.isEmptyStr(createPdfVO.getName())?"":createPdfVO.getName()); reportData.put("name", CreatePDF.isEmptyStr(createPdfVO.getName())?"":createPdfVO.getName()); reportData.put("age", CreatePDF.isEmptyStr(createPdfVO.getName())?"":createPdfVO.getName()); reportData.put("sex", CreatePDF.isEmptyStr(createPdfVO.getName())?"":createPdfVO.getName());*/ reportData.put("id", CreatePDF.isEmptyStr(createPdfVO.getId())?"":"1"); reportData.put("name", CreatePDF.isEmptyStr(createPdfVO.getName())?"":"張三"); reportData.put("age", CreatePDF.isEmptyStr(createPdfVO.getAge())?"":"20"); reportData.put("sex", CreatePDF.isEmptyStr(createPdfVO.getSex())?"":"女"); //添加數據 //String pdfPath = tempDir +"content"+new SimpleDateFormat("yyyyMMddHHmmsss").format(new Date()) + ".pdf"; String pdfPath = tempDir +"content.pdf"; boolean is; try { is= Report.createPDFReport(modelFile, pdfPath, reportData); System.out.println("生成PDF成功!"); } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); System.out.println("生成PDF異常!"); } } public static boolean isEmptyStr(Object str){ return str == null || str.toString().trim().length() < 1 ? true : false; } public static String objectToString(Object str){ if (null == str){ return null; }else{ return str.toString(); } } } ---------------------------------------------------------- //實體類 package PDFTest; public class CreatePdfVO { private String id; private String name; private String age; private String sex; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getAge() { return age; } public void setAge(String age) { this.age = age; } public String getSex() { return sex; } public void setSex(String sex) { this.sex = sex; } public String getName() { return name; } public void setName(String name) { this.name = name; } } ================================================ //請看下一篇文章 ================================================