zoukankan      html  css  js  c++  java
  • 用IronPython加载,写入文本文件

    发现在csdn首页上居然有了链接“IronPython入门”!督促自己再写些东西

    前两个随笔的基础上又加了些东西,读入,写出一个文本文件,不过读入,写出的部分都是用python里就用的东西,没有用.net framework中的System.IO命名空间下的类,单从这两个功能上说,代码确实比.net 要简单,.net还要先调用构造函数,然后再调用相应的方法。

    由于没有IDE,界面作的不怎么好看,另外也没有作异常处理

    下面是对应的.py文件内容:

    #导入名空间
    from System.Windows.Forms import *
    from System.Drawing import *


    #窗体
    f = Form()
    f.Text = "IronPython Load And Save Text File"

    #按钮
    b = Button()
    b.Text = "Load Text File"
    b.Top = 110

    btnSave = Button()
    btnSave.Text = "Save Text File"
    btnSave.Top = 110
    btnSave.Left = 100

    #richTextBox
    richText = RichTextBox();
    richText.Width = 150
    richText.Height = 100

    f.Controls.Add(richText)
    f.Controls.Add(b)
    f.Controls.Add(btnSave)

    #定义加载按钮的事件
    def buttonClick(data,event):
       
        input = open("d:\\1.txt",'r')
        s = input.read()
        input.close()
        richText.Text = s

    #定义保存按钮的事件    
    def btnSaveClick(data,event):
        output = open("d:\\1.txt",'w')
        output.write(richText.Text)
        output.close()    
     
    b.Click += buttonClick
    btnSave.Click += btnSaveClick
    f.ShowDialog()

    在IronPython的bin目录下执行,假定.py文件为d:\text.py:

    ironpythonconsole d:\text.py

    程序截图

  • 相关阅读:
    最优贸易 NOIP 2009 提高组 第三题
    Think twice, code once.
    luogu P1378 油滴扩展
    codevs 1002 搭桥
    codevs 1014 装箱问题 2001年NOIP全国联赛普及组
    洛谷P2782 友好城市
    洛谷P1113 杂务
    [HDU1848]Fibonacci again and again
    [POJ2420]A Star not a Tree?
    [SCOI2010]生成字符串
  • 原文地址:https://www.cnblogs.com/dahuzizyd/p/38521.html
Copyright © 2011-2022 走看看