浙江省高等学校教师教育理论培训

微信搜索“毛凌志岗前心得”小程序

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
上一页 1 ··· 423 424 425 426 427 428 429 430 431 ··· 630 下一页

2012年3月12日

摘要: Java文件读写数据流大全(InputStream、OutputStream、FileInpuStream) - wolfgangkiefer的日志 - 网易博客Java文件读写数据流大全(InputStream、OutputStream、FileInpuStream)2011-09-27 09:53:33|分类: java |标签:java文件读写数据流inputstreamoutputstre... 阅读全文
posted @ 2012-03-12 11:34 lexus 阅读(9824) 评论(0) 推荐(0)

摘要: Java读带有BOM的UTF-8文件乱码原因及解决方法 - daimojingdeyu - ITeye技术网站Java读带有BOM的UTF-8文件乱码原因及解决方法 博客分类:JavaJavaJVMJDKF#最近在处理文件时发现了同样类型的文件使用的编码可能是不同的。所以想将文件的格式统一一下(因为UTF-8的通用性,决定往UTF-8统一),遇见的第一个问题是:如何查看现有文件的编码方式。 上网... 阅读全文
posted @ 2012-03-12 11:33 lexus 阅读(743) 评论(0) 推荐(0)

摘要: select id,CONCAT(CAST(id AS CHAR),' ',REPLACE(ifnull(brand,''),',',' '),' ',REPLACE(ifnull(model,''),"NULL",' '),' ',name) as name,CONCAT(CAST(category_id AS CHAR),',',CAST(category_l2 AS CHR),',',CAS... 阅读全文
posted @ 2012-03-12 11:21 lexus 阅读(137) 评论(0) 推荐(0)

摘要: How to write a UTF-8 file with Java? - Stack OverflowHow to write a UTF-8 file with Java?very good 阅读全文
posted @ 2012-03-12 11:20 lexus 阅读(169) 评论(0) 推荐(0)

摘要: BufferedReader的mask和reset浏览:loading次 时间:2008-10-18 06:53:37 有个程序,需要BufferedReader读到最后一行后,然后返回到第n行,因为还要用来做别的用处。 因为以前不太常用这种方法,看了javadoc,public void mark(int readAheadLimit),于是自己随便填了数字进去,这么做的话,如果... 阅读全文
posted @ 2012-03-12 10:40 lexus 阅读(205) 评论(0) 推荐(0)

摘要: BufferedReader的mask和reset浏览:loading次 时间:2008-10-18 06:53:37 有个程序,需要BufferedReader读到最后一行后,然后返回到第n行,因为还要用来做别的用处。 因为以前不太常用这种方法,看了javadoc,public void mark(int readAheadLimit),于是自己随便填了数字进去,这么做的话,如果... 阅读全文
posted @ 2012-03-12 10:40 lexus 阅读(438) 评论(0) 推荐(0)

摘要: Write to file using a BufferedWriter - A Java Code Example import java.io.BufferedWriter; import java.io.FileNotFoundException; import java.io.FileWriter; import java.io.IOException; /** * * @author j... 阅读全文
posted @ 2012-03-12 10:29 lexus 阅读(434) 评论(0) 推荐(0)

摘要: Java IO Tutorial — tutorials.jenkov.com — ReadabilityJava IO TutorialRead Later by Jakob Jenkov •Share on Facebook1By Jakob Jenkov2Connect with me: Most applications need to process some input and p... 阅读全文
posted @ 2012-03-12 10:16 lexus 阅读(198) 评论(0) 推荐(0)

摘要: 兰大开源社区 - oss.lzu.edu.cn - java IO学习体会 [论坛 - JAVA开发]什么是IO ---------------------------------------------------------------------------- IO(Input/Output)是计算机输出/输出的接口。Java的核心库java.io提供了全面的IO接口,包括:文件读写,标准设... 阅读全文
posted @ 2012-03-12 10:08 lexus 阅读(1261) 评论(0) 推荐(0)

摘要: User guideUser guideCommons-IO contains utility classes, endian classes, line iterator, file filters, file comparators and stream implementations.For a more detailed descriptions, take a look at the j... 阅读全文
posted @ 2012-03-12 09:57 lexus 阅读(710) 评论(0) 推荐(0)

摘要: httpurlconnection_tianshuxiaolei_新浪博客httpurlconnection_tianshuxiaolei_新浪博客Java中可以使用HttpURLConnection来请求WEB资源。1:> URL请求的类别: 分为二类,GET与POST请求。二者的区别在于: a:) get请求可以获取静态页面,也可以把参数放在URL字串后面,传递给servlet, b:) ... 阅读全文
posted @ 2012-03-12 09:24 lexus 阅读(288) 评论(0) 推荐(0)

摘要: Python:监控键盘输入、鼠标操作,并将捕获到的信息记录到文件中 - Socrates的专栏 - 博客频道 - CSDN.NET Python:监控键盘输入、鼠标操作,并将捕获到的信息记录到文件中 分类: Python 脚本语言 2012-03-01 23:36 737人阅读 评论(5) 收藏 举报 使用pyhook模块可以很快地完成键盘及鼠标事件捕获,此模块可从http://sourcef... 阅读全文
posted @ 2012-03-12 09:14 lexus 阅读(749) 评论(0) 推荐(0)

摘要: [转] HTTP协议之Chunked解析 | Computer, Electron and TechnologyAdd[转] HTTP协议之Chunked解析Posted: September 2, 2008 at 9:59 pm | Tags: chunked, http, protocol, 协议, 编码, 网络 转至: http://hi.baidu.com/zkheartboy/blog/... 阅读全文
posted @ 2012-03-12 08:21 lexus 阅读(466) 评论(0) 推荐(0)

摘要: HomeApache Commons Codec (TM) software provides implementations of common encoders and decoders such as Base64, Hex, Phonetic and URLs. Base64HexPhoneticURLImpetusCodec was formed as an attempt to foc... 阅读全文
posted @ 2012-03-12 08:16 lexus 阅读(267) 评论(0) 推荐(0)

摘要: 貌似是httpclient初期的文档,很珍贵啊,Getting Started with HTTPClientetting Started with HTTPClientContentsSending Requests Example Applet Authorization Handling Redirections Cookies Parsing Header Fields Replacing... 阅读全文
posted @ 2012-03-12 08:14 lexus 阅读(283) 评论(0) 推荐(0)

摘要: HTTP Sniffer - A HTTP packet sniffer and analyzer to capture HTTP traffic and rebuild HTTP files.EffeTech HTTP Sniffer is a HTTP packet sniffer, protocol analyzer and file reassembly software based on... 阅读全文
posted @ 2012-03-12 08:11 lexus 阅读(226) 评论(0) 推荐(0)

摘要: Advanced HTTPClient InfoPipeliningIf the connection is kept open across requests then the requests may be pipelined. Pipelining here means that a new request is sent before the response to a previous ... 阅读全文
posted @ 2012-03-12 08:10 lexus 阅读(249) 评论(0) 推荐(0)

摘要: http://maxent.sourceforge.net/Welcome to Apache OpenNLPThe Apache OpenNLP library is a machine learning based toolkit for the processing of natural language text.It supports the most common NLP tasks,... 阅读全文
posted @ 2012-03-12 08:04 lexus 阅读(240) 评论(0) 推荐(0)

摘要: Regular expression example — www.javamex.com — ReadabilityRegular expression exampleRead Later •In this example, we'll use regular expressions to performing what is sometimes called HTML scraping or ... 阅读全文
posted @ 2012-03-12 08:03 lexus 阅读(441) 评论(0) 推荐(0)

摘要: Welcome to Apache OpenNLPThe Apache OpenNLP library is a machine learning based toolkit for the processing of natural language text.It supports the most common NLP tasks, such as tokenization, sentenc... 阅读全文
posted @ 2012-03-12 08:00 lexus 阅读(328) 评论(0) 推荐(0)

上一页 1 ··· 423 424 425 426 427 428 429 430 431 ··· 630 下一页