码迷,mamicode.com
首页 >  
搜索关键字:file_path    ( 738个结果
php获取文件的文件名(误区)
文件路径:$path = '/home/files/1234.jpg'; php获取文件名,大家应该是轻车熟路了,写个小函数,分分钟 1 <?php 2 //获取文件名 3 function get_fileName($file_path){ 4 //1、先获取带文件部分 5 $file_base_ ...
分类:Web程序   时间:2019-10-13 10:34:21    阅读次数:92
linux 中Redis加入环境变量
全局模式 vim /etc/profile export REDIS_HOME=/usr/local/redis/export PATH=$PATH:$REDIS_HOME/src wq (等号后为Redis的安装目录) source /etc/profile (加载环境变量使其生效) ...
分类:系统相关   时间:2019-10-11 20:03:13    阅读次数:117
将本地文件上传到远程服务器
问题:由于系统在局域网(能访问外网)内,但外网无法请求局域网内服务器文件和进行处理文件。 解决:建立文件服务器,用于存储文件及外网调用。 客户端(文件上传): 服务器端(文件接收): 应用使用: ...
分类:Web程序   时间:2019-10-11 10:40:45    阅读次数:136
git解决空文件夹无法提交
public class Gitsvn { public static final String GITSVN = ".keep"; private static void check(File path) throws Exception { File[] files = path.listFil... ...
分类:其他好文   时间:2019-10-09 19:55:54    阅读次数:168
随机产生一个手机号,保证不重复
生成八位随机数也可以用zfill Python zfill() 方法返回指定长度的字符串,原字符串右对齐,前面填充0。 代码改动: 遗留问题:用列表序列化做? ...
分类:移动开发   时间:2019-10-03 12:26:18    阅读次数:119
Django——文件上传
Django在处理文件上传时,文件数据被打包封装在request.FILES中。 一、简单上传 首先,在模型中创建表格,它必须包含一个FileField: # models.py from django import forms class UploadFile(forms.Form): file ...
分类:Web程序   时间:2019-09-21 21:41:55    阅读次数:135
预处理方法
返回x,y的列表集合 正则 只保留汉字 获取句子的最大长度 句子转数字 ,输入是句子的列表 数字转句子 python def loadEmbeddingsFile(embedding_file_path): embeddings_dict = {} with open(embedding_file_ ...
分类:其他好文   时间:2019-09-21 17:29:26    阅读次数:65
python 'utf-8' codec can't decode byte 0xb8 in position 0: invalid start byte
在导入csv文件中,出现如上所示的错误,经过查阅资料,解决方法如下: 方法一: pd.read_csv(file_path, encoding='unicode_escape') 方法二: pd.read_csc(file_path.encoding='gbk') ...
分类:编程语言   时间:2019-09-14 11:18:34    阅读次数:122
监控文件是否更新
shell脚本: #! /bin/shfile_path=/root/airflow/scheduler.logcheck_time=120file_old_stat="`stat ${file_path}|grep Size`"sleep ${check_time}file_new_stat="` ...
分类:其他好文   时间:2019-09-02 19:00:23    阅读次数:119
jax-rs下载文件
Java代码 @Path("/file") public class FileService { private static final String FILE_PATH = "c:\\file.log"; @GET @Path("/get") @Produces("text/plain") pu ...
分类:其他好文   时间:2019-08-30 23:26:53    阅读次数:135
738条   上一页 1 ... 11 12 13 14 15 ... 74 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!