字符流: FileReader FileWriter BufferedReader BufferedWriter readLine(); 字节流: FileInputReader FileOutputWriter BufferedInputstream BufferedOutputstream re...
分类:
其他好文 时间:
2014-07-22 23:09:12
阅读次数:
232
Key Words: Python, Windows, pip, readline 肇因是想在Windows下能够代码补全,需要自己添加模块,添加了又缺readline模块,安装时候又想装pip……完全就是个递归。 一个个解决。 首先建一个模块:#!/usr/bin/env pythonimp...
分类:
编程语言 时间:
2014-07-22 00:01:34
阅读次数:
356
1.seek(offset,where)where=0,1从当前位置移动,2从结束位置移动当有换行时,会被截断。seek()无返回值,值为None2.tell()文件的当前位置,tell是获得文件指针位置,受seek,readline,read,readlines影响,不受truncate影响3.truncate(n)从文件的首行首字符开始截断..
分类:
编程语言 时间:
2014-07-17 09:00:22
阅读次数:
288
交叉编译音频(无视频)版linphone
环境:Ubuntu10.04、fscl mx53
linphone3.6.1
依赖库:alsa-lib-1.0.28 ncurses-5.9 readline-5.1 libosip2-3.6.0 libeXosip2-3.6.0 libogg-1.1.4 speex-1.2rc1 libxml2-2.7.6...
分类:
其他好文 时间:
2014-07-12 22:39:50
阅读次数:
763
#coding=utf-8import osimport shutilfobj = open('F:/v3/k.txt','r')line = fobj.readline()while line: if line.find('a') >=0 : line = line.str...
分类:
移动开发 时间:
2014-07-11 11:50:20
阅读次数:
192
static void Main(string[] args) { float x, y, z, temp; Console.Write("请输入一个实数:"); x = float.Parse(Console .ReadLine() ); Console.Write("请输入一个实数:"); y....
分类:
其他好文 时间:
2014-07-09 15:32:07
阅读次数:
209
static void Main(string[] args) { char ch, c; Console.WriteLine("请输入一个字符;"); ch = char.Parse(Console .ReadLine ()); if ((ch >= 'A') && (ch <= 'Z')) c ...
分类:
其他好文 时间:
2014-07-09 15:15:21
阅读次数:
205
static void Main(string[] args) { double d; int i, e; Console.WriteLine("请输入一个整数:"); d = double.Parse(Console .ReadLine ()); i = (int)d; if (d - i > 0...
分类:
其他好文 时间:
2014-07-09 15:14:36
阅读次数:
162
由于最近弄个console程序,调用了readline,ncurses库,这两个动态库加起来有四百多k,而程序其实很小,其他地方也没使用到这两个库
所以想静态编译看看console程序有多大。
#arm-linux-gcc cli.c -o console libreadline.a libncurses.a
#ls -l
total 1932
-rwxrwxr-x 1 root...
分类:
其他好文 时间:
2014-07-09 10:24:19
阅读次数:
198
一:安装readlineOS的安装光盘里提供了readline包.[root@db11g~]#rpm-ivhreadline*libtermcap-devel*二:安装rlwrap[root@db11g~]#tar-zxvfrlwrap-0.41.tar.gz
[root@db11g~]#cdrlwrap-0.41
[root@db11grlwrap-0.30]#./configure
[root@db11grlwrap-0.30]#make
[root@db11grlwrap..
分类:
其他好文 时间:
2014-07-08 09:34:03
阅读次数:
232