python出报表使用到了数据库访问,文件读写,字符串切片处理.还可以扩展到电子邮件的发送,异常处理以及定时批任务. 总之在学习中发现还是有蛮多乐趣在其中. #coding=utf-8 ' import cx_Oracle import os import time isExt=os.path.exists('V:/report/%s'%time.strftime('%Y%m%d',time.localtime())) if not isExt: os.mkdir('V:/report/%s'%
首先我将生成饼图的方法独立写成一个PieChar.java类,详细代码如下:(数据库需要自己建,如有需要的话) import java.io.IOException; import java.sql.SQLException; import org.jfree.chart.ChartFactory; import org.jfree.chart.JFreeChart; import org.jfree.data.general.DefaultPieDataset; public class Pi
创建文件(makeTextFile.py)脚本提醒用户输入一个尚不存在的文件名,然后由用户输入文件每一行,最后将所有文本写入文本文件 #!/usr/bin/env python 'makeTextFile.py -- creat text file' import os ls = os.linesep # get file name while True: if os.path.exists(fname): #不存在返False,存在返True print "ERROR: '%s' alread