码迷,mamicode.com
首页 >  
搜索关键字:reader    ( 2243个结果
Python 获取学校图书馆OAPC账号对应的身份证号码
1 import urllib.request 2 import urllib.parse 3 import http.cookiejar 4 import re 5 6 lib_login = 'http://xxx.edu.cn/reader/redr_verify.php' 7 8 de...
分类:编程语言   时间:2014-11-13 18:43:06    阅读次数:339
数据迁移
package com.bdjsi.bdto; import java.io.BufferedWriter; import java.io.FileWriter; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.Reader; im...
分类:其他好文   时间:2014-11-13 13:07:57    阅读次数:169
工作电脑的软件配置
基础软件 腾讯电脑管家 搜狗输入法 office2013 日常软件 Chrome 浏览器 QQ 聊天 印象笔记 百度云管家 Adobe Reader - PDF阅读器 filezilla FTP工具 windows live writer - 书写博客园的博客 ArcGIS系列软件 ArcGIS f...
分类:其他好文   时间:2014-11-13 10:42:03    阅读次数:104
java读取json文件的函数
public?String?ReadFile(String?Path)?{ BufferedReader?reader?=?null; String?laststr?=?""; try?{ FileInputStream?fileInputStream?=?new?FileInputStream(Path); InputStreamRe...
分类:编程语言   时间:2014-11-12 18:19:07    阅读次数:196
PHPExcel整合到ZF2
下载PHPExcel到vendor下 在public\index.php中加 require './vendor/Classes/PHPExcel.php'; 之后就可以在任何地方按如下使用: use PHPExcel; $objPHPExcel = new PHPExcel(); 如遇到Fatal error: Class 'PHPExcel_Reader_Excel5' not f...
分类:Web程序   时间:2014-11-11 19:10:50    阅读次数:233
Json解析数组实例
1.     JsonCPP简介       jsoncpp是c++解析JSON串常用的解析库之一。其常用的类有: a)     Json::Value     可以表示里所有的类型,比如int,string,object,array等,其支持的类型可以参考Json:ValueType中的值。 b)     Json::Reader   将json文件流或字符串解析到Json::...
分类:编程语言   时间:2014-11-10 21:53:30    阅读次数:400
Java当中的I/O的字符流
字符流读写文件时,以字符为基础I/O当中字符流的核心类Reader类和Writer类是所有字符流类的父类,同样也是抽象类。FileReader和FileWriter分别是它们的子类。核心类的核心方法:Reader:int read(char [] c, int off, int len);Write...
分类:编程语言   时间:2014-11-08 00:50:16    阅读次数:261
Chart系列(二):数据绑定
1.绑定到OleDbDataReader:// Define the database query string mySelectQuery="SELECT Name, Sales FROM REPS;";// 。。。。。。// Create a database reader OleD...
分类:其他好文   时间:2014-11-07 23:18:30    阅读次数:223
C# static方法-使用迭代器循环遍历文件中的额行
//封装的方法//读取文件的值,放入集合中 public static IEnumerable ReadLines(string fileName) { using (TextReader reader=File.OpenText(fileName)) { ...
分类:Windows程序   时间:2014-11-07 18:24:25    阅读次数:234
Web_crawler
link(http://en.wikipedia.org/wiki/Web_crawler)Web crawlerNot to be confused withoffline reader. For thesearch engineof the same name, seeWebCrawler.AW...
分类:Web程序   时间:2014-11-05 19:17:05    阅读次数:518
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!