String path="D:\\新建文件夹\\2.png"; File file=new File(path); System.out.println(file.exists()); String path1="D:/新建文件夹/2.png"; File file1=new File(path); ...
分类:
编程语言 时间:
2018-12-22 01:37:04
阅读次数:
242
前言 本文不考虑Effects11(FX11),而是原始的HLSL语言。 该文章从教程02单独抽离出来作为单独的教程。 目前编译与加载着色器的方法如下: 1. 使用Visual Studio中的HLSL编译器,随项目编译期间一同编译,并生成 (Compiled Shader Object)对象文件, ...
分类:
其他好文 时间:
2018-12-05 00:09:48
阅读次数:
242
代码如下:c# pictureBox1.Image的获得图片路径的三种方法 winform 1.绝对路径:this.pictureBox2.Image=Image.FromFile("D:\\001.jpg"); 2.相对路径:Application.StartupPath; 可以得到程序根目录 s ...
在 Startup的ConfigureServices方法中添加: services.Configure<ApiBehaviorOptions>(options => { options.SuppressConsumesConstraintForFormFileParameters = true; ...
一,备份 备份默认路径查看: gitlab/config/gitlab.yml 中的backup: 默认tmp/backups 》这个是gitlab/tmp/backups/ 可不是系统的tmp/backups 进入gitlab账户下执行备份命令 bundle exec rake gitlab:ba ...
分类:
其他好文 时间:
2018-11-10 19:11:13
阅读次数:
292
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks; using Spire.Pdf; namespace KZT{ class ...
分类:
其他好文 时间:
2018-11-09 12:13:16
阅读次数:
187
github链接:https://github.com/Nancy0611/wc 一:项目相关要求 该项目能统计文本文件的字符数、单词数和行数。这个项目要求写一个命令行程序,模仿已有wc.exe 的功能,并加以扩充,给出某程序设计语言源文件的字符数、单词数和行数。实现一个统计程序,它能正确统计程序文 ...
分类:
编程语言 时间:
2018-09-14 19:54:11
阅读次数:
162
一 安装readline包之后python3.6导入模块异常退出 Type "help", "copyright", "credits" or "license" for more information. >>> import time *** Error in `python3.6': munm ...
分类:
系统相关 时间:
2018-09-13 20:20:43
阅读次数:
238
private void button1_Click(object sender, EventArgs e) { //创建文件对象 FileInfo fi = null; //实例化打开文件对话框 OpenFileDialog ofd = new OpenFileDialog(); //设置对话框的 ...