欢迎来到天天文库
浏览记录
ID:51707159
大小:71.00 KB
页数:24页
时间:2020-03-15
《数据挖掘DMS代码(JAVA).doc》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、packagecom.tarena.dms;importjava.io.BufferedReader;importjava.io.File;importjava.io.FileInputStream;importjava.io.FileNotFoundException;importjava.io.FileReader;importjava.io.IOException;importjava.io.InputStream;importjava.io.OutputStream;importjava.io.PrintWr
2、iter;importjava.io.RandomAccessFile;importjava.net.Socket;importjava.util.ArrayList;importjava.util.List;importjava.util.Properties;importjava.util.Scanner;importjavax.swing.JFrame;publicclassDMSClient{privateDMSClientFrameframe;/***用于保存日志文件读取位置*/privateFilepos
3、itionFile;/***用readLogs生成的文本日志文件*/privateFiletextLogFile;/***原始的unix日志文件*/privateFilelogFile;publicstaticfinalintLOG_LENGTH=372;publicstaticfinalshortLOGIN=7;publicstaticfinalshortLOGOUT=8;privatePropertiesconfig;privateintbatch;privateFilematchedLogFile;privat
4、eFileloginFile;privateStringserverHost;privateintserverPort;/***利用构造器初始化对象属性*/publicDMSClient(){//读取配置文件,利用配置文件初始化参数对象config=newProperties();try{config.load(newFileInputStream("client.properties"));}catch(IOExceptione){e.printStackTrace();thrownewRuntimeExcepti
5、on(e);}logFile=newFile(config.getProperty("log.file"));positionFile=newFile(config.getProperty("position.file"));textLogFile=newFile(config.getProperty("text.log.file"));batch=Integer.parseInt(config.getProperty("batch"));matchedLogFile=newFile(config.getProper
6、ty("matched.log.file"));loginFile=newFile(config.getProperty("login.log.file"));serverHost=config.getProperty("server.ip");serverPort=Integer.parseInt(config.getProperty("server.port"));}publicvoidshowReadLogsMsg(Stringmsg){if(frame==null){System.out.println(ms
7、g);}else{frame.showReadLogsMsg(msg);}}/***读取日志文件*/publicvoidreadLogs(){//要保证在调用readLog()时logFile变量要有适用的对象if(!logFile.exists()){showReadLogsMsg("没有unix日志文件!");return;}if(textLogFile.exists()){showReadLogsMsg("文本文件存在!本次不读取了!");return;}//读取上回位置判断是否有新记录产生intn=0;//上
8、次读取的记录号Scannerin=null;if(positionFile.exists()){try{in=newScanner(positionFile);n=in.nextInt();showReadLogsMsg("读取本次记录号"+n);}catch(IOExceptione){e.printStackTrace();showRead
此文档下载收益归作者所有