首页 > TAG信息列表 > inputFile

Python 将 docx 转为 PDF

安装 pip install docx2pdf 使用 from docx2pdf import convert # doc 文件 需要先转为 docx 文件(一般情况下、直接修改后缀名、不会对原文件有影响) inputFile = '1.docx' # 要转换的文件:已存在 outputFile = '1.pdf' # 要生成的文件:不存在 # 先创建 不存在的 文件 f1 = open

解压缩文件,删除文件夹下的文件

public void deleteFloder(File floder) { File files[] = floder.listFiles(); if (files != null) { for (int i = 0; i < files.length; i++) { // System.out.println(files[i].getName()); if (files

Java多线程Zip压缩

Java多线程Zip压缩 Zip压缩多线程压缩线程池 依赖 maven坐标 <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> <version>1.20</version> </dependency> 压缩工具包代码 ZipCompressUtils

使用jacob调用Windows的com对象,进行word、ppt等转换成ptf、html

1、介绍 Jacob 是Java-COM Bridge的缩写,它在Java与微软的COM组件之间构建一座桥梁。使用Jacob自带的DLL动态链接库,并通过JNI的方式实现了在Java平台上对COM程序的调用。至于什么是COM组件,大家自己Google吧。 2、安装和配置 Jacob是一个开源软件,它的官方站点是: http://danadler.com

自定义读取配置文件工具

自定义读取配置文件工具 public abstract class ConfigPropertiesUtils { private static final Logger log = LoggerFactory.getLogger(ConfigProperties.class); private static final Map<String, Properties> propsMap = new ConcurrentHashMap<String, Proper

Spark—WordCount

      本地模式 import org.apache.spark.SparkContext import org.apache.spark.SparkConf object WordCount { def main(args: Array[String]) { val conf = new SparkConf().setAppName("WordCount").setMaster("local[2]") val sc = new Spar

C#调用C++ DLL类方法(转)--托管

https://www.cnblogs.com/profession/p/5851749.html C++的优势在于高效灵活,C#的优势在于简单易用,两者结合起来对项目开发来说是件好事,而且C++不容易反编译,也保障了代码的安全性,如果一些核心算法使用C#编写,那么保密就是一个问题。 C++生成的DLL一般只提供函数接口,不能直接用C#

element-ui upload 上传图片之前压缩

  1、安装模块 image-conversion npm install --save image-conversion   2、在utils/utils文件封装全局方法 import * as imageConversion from 'image-conversion'; /** * 压缩图片 * inputFile :file * toSize : 想要压缩的大小 * */ export async function compressA

sed笔记(1)

命令格式 sed SCRIPT INPUTFILE...   参数     -i中的规则 如果扩展没有*,那么将扩展追加到当前文件名后面作为后缀 如果有*,每个*被当前文件名替换,这个可以支持前缀,甚至是将备份放到特定的目录 如果没有扩展,原始文件被覆盖

解密 Skill 脚本

https://www.cnblogs.com/yeungchie/ code procedure(Decrypt(inputFile @optional outputFile "tt") prog((inp out line) if(inputFile then unless(outputFile outputFile = sprintf(nil"%s.dec" inputFile) ) when(isFile(outputFi

文件上传总结

文件上传总结 文件上传的方式有哪些(Flash已经淘汰,不再提及) 目前常用的只有2种 1. form上传 就是使用 inputFile 控件,form的enctype必须是 multipart/form-data <form method="post" action="http://uploadUrl" enctype="multipart/form-data"> <input name="file&quo

java基础之I/O操作

直接上代码: import java.io.*; class Test{ public static void main(String[] args){ FileInputStream inputfile = null; FileOutputStream outputfile = null; try{ inputfile = new FileInputStream("./input.txt");

前端上传图片预览

转成blob 预览<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title></head><body><input id="inputFile" type="file" accept="image/*&

Java调用ffmepg+mencoder视频格式转换(*)

原文链接:http://www.cnblogs.com/coprince/p/3461664.html PS: 建议大家在官网下载最新的资源   其他格式转FLV格式,可以用Java调用ffmpeg和memcoder实现 ffmepg: D:\ffmpeg\bin\ffmpeg.exe -i E:\1.mp4 -ab 64 -acodec mp3 -ac 2 -ar 22050 -b 230 -r 24

js php 点击按钮上传图片

前端代码 <button class="add-img-btn"></button> <script> $(".add-img-btn").click(function () { var thisObj = $(this); var inputFile = document.createElement("input"); inputFile.type = "file";