上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 69 下一页
摘要: file_object = open('thefile.txt')try: all_the_text = file_object.read().decode("gb2312")finally: file_object.close()return all_the_text 注:file_object. 阅读全文
posted @ 2017-03-09 13:06 海乐学习 阅读(511) 评论(0) 推荐(0) 编辑
摘要: file_object = open('thefile.txt') try: all_the_text = file_object.read() finally: file_object.close() return all_the_text 注:file_object.read().decode( 阅读全文
posted @ 2017-03-09 12:48 海乐学习 阅读(291) 评论(0) 推荐(0) 编辑
摘要: strRecordFile="d:\RecordFile\2017\03\09\00020170309113442.wav"; 完整文件名: string strFilePaht=strRecordFile.Substring(strRecordFile.LastIndexOf("\\") + 1, 阅读全文
posted @ 2017-03-09 12:14 海乐学习 阅读(2239) 评论(0) 推荐(1) 编辑
摘要: Javscript调用iframe框架页面中函数的方法,可以实现iframe之间传值或修改值了, 访问iframe里面的函数: 2.html 原文:http://www.jb51.net/article/56988.htm 阅读全文
posted @ 2017-02-28 11:33 海乐学习 阅读(4368) 评论(0) 推荐(0) 编辑
摘要: 1、在php.ini文件中改动error_reporting改为: error_reporting=E_ALL & ~E_NOTICE 2、如果你不能操作php.ini文件,你可以使用如下方法 在你想禁止notice错误提示的页面中加入如下代码: error_reporting(E_ALL^E_NO 阅读全文
posted @ 2017-02-16 15:35 海乐学习 阅读(17830) 评论(0) 推荐(0) 编辑
摘要: 1.在php.ini中打开extension=php_oci8扩展,重启服务。 2.将php/ext目录下的php_oci8.dll文件拷贝到system32目录下 3.安装 Oracle9i客户端精简版 后重启电脑 配置: 查询: 插入: 阅读全文
posted @ 2016-08-17 16:30 海乐学习 阅读(27196) 评论(0) 推荐(0) 编辑
摘要: string strURL = "http://localhost/WinformSubmit.php"; //string param = string.Format("do=login&u={0}&p={1}", username, password); //参数的另一种写法 string st 阅读全文
posted @ 2016-06-20 10:57 海乐学习 阅读(6654) 评论(0) 推荐(0) 编辑
摘要: php 生成 Json 部分 <?php $arr_result = array(); //返回值 $arr_result['result'] = '0'; $arr_result['callerid'] = '139411288888'; echo json_encode($arr_result) 阅读全文
posted @ 2016-06-20 10:50 海乐学习 阅读(393) 评论(0) 推荐(0) 编辑
摘要: 引用 Newtonsoft.Json.dll //C# 读取JSON Newtonsoft.Json.Linq.JObject jsonStr = Newtonsoft.Json.Linq.JObject.Parse(strResult); this.txtResult.Text = jsonStr 阅读全文
posted @ 2016-06-20 10:49 海乐学习 阅读(1466) 评论(0) 推荐(0) 编辑
摘要: vertical-align:middle; 阅读全文
posted @ 2016-04-20 21:02 海乐学习 阅读(258) 评论(0) 推荐(0) 编辑
上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 69 下一页