- 论坛徽章:
- 0
|
--->
<---
表示输入命令或输出的流向
python -- cmd1 -> a
a计算
python <-- output1 - a
python 根据output1 得到 cmd2
python -- cmd2 --> a 再根据结果计算
python <--output2 - a
python 根据output2 得到 cmd3
python -- cmd3 --> a 再根据结果计算
python <--output3 - a
go on ........
要求很简单 只是和一个应用程序交互
实现类似于人与shell或cmd交互
1 通过python发送一条命令到应用程序
2 然后python得到输出 根据一定规则算出下一条新命令
3 再次发送新命令给应用程序 回到了 1
重复以上过程 直到发送退出命令
popen2并不能达到要求
看test4.py为了读取输出必须关闭输入
那么就不能进行下一次输入了
test4.py有 close语句就有正确的输出
test3.py没 有 close语句就没有输出
- C:\Documents and Settings\duffor\BIN>type test4.py
- import popen2
- a,b=popen2.popen2('cmd')
- b.write('dir \n')
- b.close()
- print a.read()
- C:\Documents and Settings\duffor\BIN>c:\Python25\python.exe test4.py
- Microsoft Windows XP [版本 5.1.2600]
- (C) 版权所有 1985-2001 Microsoft Corp.
- C:\Documents and Settings\duffor\BIN>dir
- 驱动器 C 中的卷没有标签。
- 卷的序列号是 8419-16AF
- C:\Documents and Settings\duffor\BIN 的目录
- 2007-03-03 23:23 <DIR> .
- 2007-03-03 23:23 <DIR> ..
- 2006-11-20 22:06 145,032 ELEEYE.BIN
- 2007-01-27 13:31 94,208 ELEEYE.EXE
- 2007-03-03 23:00 1,235 test.py
- 2007-03-03 16:35 3,010 test2.py
- 2007-03-03 23:22 88 test3.py
- 2007-03-03 23:27 88 test4.py
- 6 个文件 243,661 字节
- 2 个目录 672,071,680 可用字节
- C:\Documents and Settings\duffor\BIN>
- C:\Documents and Settings\duffor\BIN>type test3.py
- import popen2
- a,b=popen2.popen2('cmd')
- b.write('dir \n')
- b.flush()
- print a.read()
- C:\Documents and Settings\duffor\BIN>c:\Python25\python.exe test3.py
- #### 这里的不到任何输出结果
- #### 程序一直在等待
复制代码
[ 本帖最后由 njmarshal 于 2007-3-4 09:39 编辑 ] |
|