zoukankan      html  css  js  c++  java
  • 基于System.Text导出

    public void WriteTxt()
    {
    string ACellNameChecked = "";
    string InSysInterAnalyReportWordSavePath;
    ACellNameChecked = InvalidCellNameCharsRemoveForFilePath(AnalysisCellNamecomboBox.Text);
    if (!Directory.Exists(InterferenceAnalysisResultSavePath + "\各小区优化方案报告"))
    Directory.CreateDirectory(InterferenceAnalysisResultSavePath + "\各小区优化方案报告");
    InSysInterAnalyReportWordSavePath = InterferenceAnalysisResultSavePath + "\各小区优化方案报告" + "\" + ACellNameChecked + "网内干扰优化方案.txt";

    FileStream FS = new FileStream(InSysInterAnalyReportWordSavePath, FileMode.Create);
    StreamWriter SW = new StreamWriter(FS);

    string Box = AnalysisCellNamecomboBox.Text;
    string AcellName = OptimizeDictionaryAl[Box].Keys.ToList()[0];
    string NcellName1 = OptimizeDictionaryAl[Box].Keys.ToList()[1];
    string NcellName2 = OptimizeDictionaryAl[Box].Keys.ToList()[2];
    string NcellName3 = OptimizeDictionaryAl[Box].Keys.ToList()[3];

    StringBuilder ACell = new System.Text.StringBuilder("受扰小区:" + AcellName + ";");
    StringBuilder Ncell1 = new System.Text.StringBuilder("干扰源小区1:" + NcellName1 + ";");
    StringBuilder Ncell2 = new System.Text.StringBuilder("干扰源小区2:" + NcellName2 + ";");
    StringBuilder Ncell3 = new System.Text.StringBuilder("干扰源小区3:" + NcellName3 + ";");


    SW.Write(txt(ACell, Box, AcellName, "a") + " ");
    SW.Write(txt(Ncell1, Box, NcellName1, "b") + " ");
    SW.Write(txt(Ncell2, Box, NcellName2, "a") + " ");
    SW.Write(txt(Ncell3, Box, NcellName3, "b") + " ");

    SW.Flush(); //清空缓冲区
    SW.Close(); //关闭流
    FS.Close();
    }

  • 相关阅读:
    idea中编译项目报错 java: javacTask: 源版本 1.8 需要目标版本 1.8
    发布返回结果对象中添加冒泡结果字段
    Spring还使用基于 JSR-250 注释,它包括 @PostConstruct, @PreDestroy 和 @Resource 注释
    跨网段IP
    Vlan
    分区工具parted的详解及常用分区使用方法
    dump命令详解
    备份 (综述)
    firewalld 防火墙配置
    find、which、whereis、locate和type之间的区别
  • 原文地址:https://www.cnblogs.com/SiSui/p/9506132.html
Copyright © 2011-2022 走看看