码迷,mamicode.com
首页 >  
搜索关键字:is_file    ( 50992个结果
web开发中常用的js
将自己在web开发中经常用到的一些JS总结一下。 1.修改标签和表单的值 修改标签的值: var customer = document.getElementById("custm" ).innerHTML; alert(customer); document.getElementById( "custm").innerHTML = "name" 修改控件(...
分类:Web程序   时间:2014-06-03 02:15:56    阅读次数:235
在64位linux上编译32位程序
ld指令有一个选项:--oformat output_format,用于指定输出文件的格式。输入文件./kernel/kernel.o等是elf32格式,当前系统是64位,而ld默认生成的文件格式是elf64-x86-64;因此会出现“ld: warning: i386 architecture of input file `./kernel/kernel.o' is incompatible...
分类:系统相关   时间:2014-06-03 00:37:43    阅读次数:668
Selenium错误:selenium.common.exceptions.WebDriverException: Message: "Can't load the profile.
错误描述:在python代码中通过selenium来初始化一个firefox浏览器失败,看了下selenium的版本是2.35,然后用firefox --version看了下是28.0,firefox好像不听话自动升级了导致了旧版selenium不支持。 Traceback (most recent call last):   File "C:\Python27\erSiteCompare.p...
分类:Web程序   时间:2014-06-02 22:31:07    阅读次数:611
[Android_Bug]处理PhoneGap Application Error: "The connection to the server was unsuccessful.(file:///android_asset/www/index.html)"的错误
android 在log中提示TimeOut Error后,应用程序弹出application errorthe connection to the server was unsuccessful 的错误的处理方法:第一步找到项目中res/xml目录下的config.xml,把你的外网的域名地址添加...
分类:移动开发   时间:2014-06-02 22:24:37    阅读次数:361
Jindent——让intellij idea 像eclipse一样生成模版化的javadoc注释
插件地址http://plugins.jetbrains.com/plugin/2170?pr=idea安装方法参考http://www.cnblogs.com/nova-/p/3535636.html安装完成后File>Settings>Jindent-Source Code Formatter这...
分类:编程语言   时间:2014-06-02 20:52:22    阅读次数:312
Linux_shell脚本_遍历文件夹下所有文件
参考:lunar1983的专栏 实现:从给定目录树中grep出含制定字符串的行,并给出所在路径 代码如下所示: #!/bin/sh -if [ $# -ne 2 ] then echo "usage traverse " exitfi{function ergodic(){for file in `...
分类:系统相关   时间:2014-06-02 17:31:29    阅读次数:395
分享一下个人的Vim配置文件
强烈拥护开源精神,高举开源大旗,今天我就分享下我自己结合网上还有自己实际使用配的vimrc,可以给各位参考下,不要见笑哈,具体说明我在rc里写的也很详细,可以具体看下,也希望可以借这个机会能多认识认识几个Vimer们     "======================================== " File Name: .vimrc " Author: Jin Yuqi " Ema...
分类:其他好文   时间:2014-06-01 10:58:10    阅读次数:308
多线程下载,以及断点的实现
import java.io.File; import java.io.InputStream; import java.io.RandomAccessFile; import java.net.HttpURLConnection; import java.net.URL; import javax.imageio.stream.FileImageInputStream; /** * 多线程...
分类:编程语言   时间:2014-06-01 09:54:13    阅读次数:346
Android增加v7 appcompat源码
1.File ---- Import---- Existing Android Code Into Workspace2.选择/extras/android/support/v7/appcompat/导入进来3.去github上查找,“platform framework support”,下载下来...
分类:移动开发   时间:2014-05-31 18:46:40    阅读次数:312
mysql链接错误
Warning: mysqli_connect() [function.mysqli-connect]: [2002] No such file or directory (trying to connect via unix:///var/mysql/mysql.sock) in xxx.php ...
分类:数据库   时间:2014-05-31 18:38:12    阅读次数:303
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!