- 浏览: 33980 次
- 性别:
- 来自: 天津
最新评论
-
metallica_1860:
logon info: username: junzi da ...
transient
文章列表
package com.tool;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import org.apache.commons.io.FileUtils;
public class FileUtil {
public static void main(String[] args) {
start("E:\\web_space\\***", "E:\\g\\trunk ...
python string和PyQt的QString的区别 以下在Python2.6和PyQt4.4.4 for Python2,6环境下讨论: Python中有两种有关字符的类型:Python string object和Python Unicode object。主要使用Python string object进行数据输入输出。 PyQt中与之相对应的字符有关类
python string和PyQt的QString的区别
以下在Python2.6和PyQt4.4.4 for Python2,6环境下讨论:
Python中有两种有关字符的类型:Python str ...
2010/11/23、24、26、29 \150.00
2010/11/24 \20.00
2010/11/30、12/1、2、4、6、7 \208.70
2010/12/6 \40.00
2010/12/8、9、10、13、14、15 \201.50
2010/12/16、20、21 \120.90
2010/12/22、23、25、27、28、29 \202.80
2010/12/30 \45.40
2010/12/25 \12.00
\1,001.30
JAVA已经很熟悉了,但是python的处理字符串还是有些出入的地方,总结一下.
JAVA:
String str = "1234567890abcdefghijklmnopqrstuvwxyzabc";
System.out.println("是否以xx开始 : " + str.startsWith("1"));
System.out.println("是否以xx结束 : " + str.endsWith("c"));
System.out.println("获得 ...
代码就不上了,因为还在扩展,所以每次都随着更新也挺痛苦的...
具体操作:
1.单语检索 日文-->中文
(1)はい:检索出所有是恰好就是"はい"的单词
(2)*はい:检索出所有以"はい"结尾的单词
(3)はい*:检索出所有以"はい"开头的单词
(4)*はい*:检索出所有中间带有"はい"的单词
(注:"入"或者"入い"这样的也可以作为检索条件.)
2.单语检索 中文-->日文
这个就直接输入中文吧,当然,你输入的中文意思越详细,查询 ...
-showsplashcom.genuitec.myeclipse.product--launcher.XXMaxPermSize512m-vmargs-Xms256m-Xmx512m-Duser.language=en-XX:PermSize=256M-XX:MaxPermSize=512M
# coding:UTF-8
import os
import sys
from PyQt4.QtCore import *
from PyQt4.QtGui import *
from PyQt4.QtSql import *
from ExcelTool import ExcelHandler
def insertData(filenames):
query = QSqlQuery()
for filename in filenames:
eh = ExcelHandler()
results = eh. ...
# coding: UTF-8
from pyExcelerator.ImportXLS import parse_xls
from pyExcelerator import Workbook
import string
class ExcelHandler():
#读取excel文件的内容,返回一个包含行列的集合
#@param file_full_name:
#@return: sheet_list[[0,[a,a,a]],[1,[b,b,b]],[2,[c,c,c]],[3,[d,d,d]]]
def re ...
# -*- coding:UTF-8 -*-
"""字符处理的工具:
判断unicode是否是中文,日文,数字,英文,或者其他字符。
全角符号转半角符号。"""
def is_number(self, uchar):
"""判断一个unicode是否是数字"""
if uchar >= u'\u0030' and uchar <= u'\u0039':
return True ...
1.XXX.py
# coding: UTF-8
import os
from pegasusswf.HttpTool import Server
import time
import ctypes
if __name__ == "__main__":
whnd = ctypes.windll.kernel32.GetConsoleWindow()
if whnd != 0:
ctypes.windll.user32.ShowWindow(whnd, 0)
ctypes.win ...
之前一直苦苦纠结于QWebView...可惜未果...
后来无意发现了QAx系列,试了一下~感觉很爽~
可惜PyQt在网上的例子太少太少了...
# -*- coding:UTF-8 -*-
import os
import BaseHTTPServer
import time
import threading
import urlparse
class ServerHandler(BaseHTTPServer.BaseHTTPRequestHandler):
# def __init__(self,request, client_address, server):
# BaseHTTPServer.BaseHTTPRequestHandler.__init__(self,req ...
# -*- coding: utf-8 -*-
#'./data.pgd'
def content2File(fileFullName, content):
writer = open(fileFullName, 'wb')
writer.write(content.encode('hex').encode('base64').encode('bz2'))
writer.close()
def file2Content(fileFullName):
reader = open(fileFullName, 'rb')
...