## 1. 例子```pythonimport logginglogging.basicConfig(filename='log.txt', #文件名 level=logging.DEBUG, #级别 format=u'时...
分类:
其他好文 时间:
2014-07-22 00:20:36
阅读次数:
230
public void ProcessRequest(HttpContext context) { context.Response.Clear(); context.Response.Buffer = true; /...
分类:
Web程序 时间:
2014-07-20 09:04:44
阅读次数:
178
#说明:大家平时对linux服务器安全主要是对系统用户的检查,登陆服务器IP检查,以及防火墙状态检查!1.需要把正确系统用户名存储在/root/liu_shell/local_user.txt文件中,然后进行比较!2.对登陆IP判断是不是以192.168.1和192.168.2开头的IP为正常IP!3.判断iptables状态!#!/usr/..
分类:
系统相关 时间:
2014-07-20 06:42:37
阅读次数:
286
在项目路径下新疆一个proguard-project.txt文件 ,最后记得要用eclipse工具导出正式包才会用到混淆,调试模式没用-optimizationpasses 5-verbose-optimizations !code/simplification/arithmetic,!field/...
分类:
其他好文 时间:
2014-07-19 17:00:05
阅读次数:
194
Sub OneTxt() '打开一个txt文件 Dim Filename As Variant, extLine&, mArr() As String Dim i%, j% ChDir ThisWorkbook.Path Filename = Application.GetO...
分类:
其他好文 时间:
2014-07-18 14:29:21
阅读次数:
149
Sub OneTxt() '打开一个txt文件 Dim Filename As Variant, extLine&, mArr() As String Dim i%, j%, txtpath As String Dim txtname As Variant C...
分类:
其他好文 时间:
2014-07-18 14:15:36
阅读次数:
205
在linux下的工程编译,基本都可以使用makefile这个工具来完成。Contiki OS亦如此,下面分析contiki整个Makefile的框架,对makefile的具体内容暂不做分析。本文依赖于contiki OS 源码目录下 /doc/build-system.txt 文件,若有疑问,可参考...
分类:
其他好文 时间:
2014-07-16 19:05:44
阅读次数:
175
http://blog.csdn.net/piaolankeke/article/details/6272214MySQL写入数据通常用insert语句,如[c-sharp]view plaincopyinsertintopersonvalues(张三,20),(李四,21),(王五,70)…;但有...
分类:
数据库 时间:
2014-07-16 18:25:05
阅读次数:
253
WPF 中读取和写入TxT 是经常性的操作,本篇将从详细演示WPF如何读取和写入TxT文件。
分类:
其他好文 时间:
2014-07-14 23:55:19
阅读次数:
410
String pathname = "E:\\workspace\\stanfordner\\sample.txt";
File filename = new File(pathname); // 要读取以上路径的input。txt文件
String query_id = filename.getName().substring(0,filename.getName().last...
分类:
编程语言 时间:
2014-07-12 20:05:29
阅读次数:
259