ICode9

精准搜索请尝试: 精确搜索
  • ArcEngine拖拽加载文件2022-09-16 20:31:19

    来自:https://www.likecs.com/show-204002511.html 第一步:设置MapControl的AllowDrop属性为True第二步:设置MapControl的OldDropEnabled属性为True第三步:选择MapControl的OnOleDrop事件第四步:加入如下代码 using System; using System.Collections.Generic; using System.ComponentM

  • PHP使用ZipArchive压缩、解压缩、加密压缩包等2022-09-11 14:31:57

    <?php use ZipArchive; class Zip { /** * @var array $files 需要压缩的文件或文件夹 */ public $files = []; /** * 排除的文件 */ public $notFile = []; /** * 压缩或者解压密码 */ public $passowrd = null;

  • windows命令获取文件MD5/SHA1/SHA2562022-09-09 08:31:47

    MD5 certutil -hashfile [filePath] MD5 SHA1 certutil -hashfile [filePath] SHA1 SHA256 certutil -hashfile [filePath] SHA256

  • [CSharpTips]C# 读写INI文件2022-09-01 15:03:48

    读写.ini文件工具 可以直接使用 using System; using System.Collections.Generic; using System.IO; using System.Runtime.InteropServices; using System.Text; namespace WinFormSharpDemo.Common.Helpers { /// <summary> /// INI文件读写工具 /// </summary>

  • .Net 根据文件路径导出文件2022-08-19 12:00:08

    //1.首先要有文件路径 2.要知道文件后缀 3.根据后缀在Provider Map对应的contentType 4.return FileSteam public IActionResult ExportWorkList(string filePath) { var stream = System.IO.File.OpenRead(filePath); //将文件读成文件流

  • 如何读取resources目录下的文件路径(九种方式)2022-08-18 00:01:14

    前情提要 本文中提供了九种方式获取resources目录下文件的方式。其中打印文件的方法如下: /** * 根据文件路径读取文件内容 * * @param fileInPath * @throws IOException */ public static void getFileContent(Object fileInPath) throws IOEx

  • Path.GetDirectoryName方法2022-08-17 14:30:27

    命名空间:System.IO程序集:System.Runtime.dllPath.GetDirectoryName()返回指定路径的目录信息 参数 pathString 文件或目录的路径。 返回 String path 的目录信息;如果 path 表示根目录或为 null,则为 null。 如果 path 不包含目录信息,则返回 Empty。   string filePath

  • 使用python将mat文件转化为json文件并储存2022-08-11 20:00:08

    import os import scipy.io as spio import pandas as pd def loadmat(filename): """ this function should be called instead of direct spio.loadmat as it cures the problem of not properly recovering python dictionaries from mat

  • C# 读取图片转成Base64编码2022-08-05 15:31:28

      1 /// <summary> 2 /// 根据图片的路径解析成图片资源 3 /// </summary> 4 /// <param name="filePath"></param> 5 /// <returns></returns> 6 public static string BitmapImage

  • 九种方式,教你读取 resources 目录下的文件路径2022-08-01 23:00:58

    前情提要 本文中提供了九种方式获取resources目录下文件的。其中打印文件的方法如下: /** * 根据文件路径读取文件内容 * * @param fileInPath * @throws IOException */ public static void getFileContent(Object fileInPath) throws IOException { BufferedReader br

  • [LeetCode] 588. Design In-Memory File System2022-07-24 07:31:34

      Design a data structure that simulates an in-memory file system. Implement the FileSystem class: FileSystem() Initializes the object of the system. List<String> ls(String path) If path is a file path, returns a list that only contains this file&

  • 【Java】获取resources路径下的文件2022-07-08 18:04:55

      public class ResourceUtil { /** * 获取resources路径下的文件路径 * * @param filePath 若文件路径为“E:\Code\UiAuto\boos\src\main\resources\driver\chromedriver.exe” 则仅传“driver\chromedriver.exe”即可 * @return */ public s

  • python3 一些基础操作笔记2022-07-08 01:01:17

    读取文件模板 1 # -*- coding: utf-8 -*- 2 import glob 3 filepath = glob.glob('**/kernel_log*', recursive=True) 4 print(filepath) 5 6 for path in filepath: 7 with open(path, mode='r', encoding='utf-8') as f: 8

  • Java应用-1-文件流的读和写2022-07-02 16:31:45

    目录1. 目录、文件工具类2. 场景—持续写入 1. 目录、文件工具类 // 检查目录是否存在,不存在则创建 public boolean chkDirExists(String pathStr) { File path = new File(pathStr); if (path.exists()) { return true; } else { return file.mkdirs

  • node读取gb2312文件2022-06-24 11:33:52

    读取gbk gb2312 需要先安装iconv-lite : npm install iconv-lite gbk 格式问价,utf8 格式打开乱码 //1. 导入fs模块 const fs = require("fs") const filepath = './testfile/yibao/log/呼叫2022-06-23.log' var iconv = require("iconv-lite"); //return console.lo

  • springboot+vue实现 下载服务端返回的文件功能2022-06-22 19:01:41

         开发中会遇到,通过浏览器下载服务器端返回的文件功能,本文使用springboot+vue实现该功能。 后端代码: 注:后端返回的文件名遇到中文就会乱码,一直也没得到很好的解决方案,最后就统一返回1.xxx的文件,文件名称由前端最终改成实际的文件名(包含中文也没问题) /** * 资源下载。

  • Unity 批量动态添加图片,可后台替换2022-06-17 17:34:53

    string filePath = Application.streamingAssetsPath + "/"+ str; if (Directory.Exists(filePath)) {//判断这个路径是否存在 DirectoryInfo direction = new DirectoryInfo(filePath); floders = direction.GetFiles("*.png", Se

  • 【python】保存wav文件2022-06-11 02:02:26

    参考大佬博客:python音频处理用到的操作 import wave, os, struct, librosa import numpy as np # wav文件读取 filepath = "./wavs/" filename= os.listdir(filepath) # 所有文件名称 wfile = filepath + filename[1] print(wfile)

  • uniapp中的图片上传2022-05-21 12:04:12

    UNIAPP中的图片上传 vue端, <template> <view> <progress :percent="percent" strock-width="10"></progress> <button type="primary" @tap="cI">chooseImg</button> </vi

  • 单个文件上传和批量文件上传2022-05-10 11:31:07

    一、单个文件上传 前端代码可参考elementUI,后端代码主要上传一个文件MultipartFile multipartFile @PostMapping("/upload") public ObjectRestResponse uploadKnowledge(@RequestParam(value = "multipartFile") MultipartFile multipartFile) throws IOException { Map

  • C#.NET读取文本文件的几种办法2022-05-08 10:03:51

    一次读取一个字符 //文件路径 string filePath = @"C:\Users\Administrator\Downloads\test\test.txt"; //文本读取器 using(TextReader reader = new StreamReader(filePath,System.Text.Encoding.UTF8)) { //一次读一个字符 int textChar = reader.Read(); //遍历

  • IO之FileOutputStream文件输出流2022-04-26 22:34:57

    FileOutputStream文件输出流 package com.io.outputstream_; /** * 演示使用FileOutputStream将数据写到文件中 * 如果该文件不存在,则创建该文件 */ import org.junit.jupiter.api.Test; import java.io.FileOutputStream; import java.io.IOException; import java.nio.ch

  • C#中下载项目中的文件2022-04-26 15:00:18

    1.将需要下载的文档添加到项目的文件夹中    2.接口部分 public IActionResult DownLoad() { var filePath = Directory.GetCurrentDirectory() + "\\UploadFileTemplate"; var strFileName = "Manual courier dispatch record upload.xlsx"

  • IO流—— 常用的类2022-04-15 20:32:55

    FileReader String filepath = "D:\\啊哈哈哈7931\\story.txt"; FileReader fileReader=null; int data=0; try { fileReader = new FileReader(filepath); while ((data=fileReader.read())!=-1){

  • 15-常用标准库之-path/filepath2022-04-09 23:00:35

    一、Path包 1.1 常用函数 path实现了对斜杠分隔的路径进行操作的函数。 func IsAbs(path string) bool // 判断是否是一个绝对路径 func Split(path string) (dir, file string) // 将路径分割为路径和文件名 func Join(elem ...string) string // 将多个字符串合并为一个路径 fun

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有