码迷,mamicode.com
首页 >  
搜索关键字:rms    ( 921个结果
winform提取文本(txt)中想要的内容
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.IO;using System.Linq;usi ...
分类:Windows程序   时间:2021-07-02 16:23:21    阅读次数:0
windows form 登录
1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Data.SqlClient; 6 using System. ...
分类:Windows程序   时间:2021-06-05 17:42:00    阅读次数:0
自定义异常
1.自定义异常 public class CreateFailedException extends RuntimeException{ public CreateFailedException(String errMsg) { super(errMsg); } /** * Construct a ...
分类:其他好文   时间:2021-06-02 19:45:45    阅读次数:0
tomcat优化
Tomcat优化 内存,并发,缓存,安全,网络,系统等 1. JAVA虚拟机内存申请优化 在文件tomcat_home/bin/catalina.sh的前面,增加如下设置(需要考虑Java提供的垃圾回收机制) JAVA_OPTS='-Xms1024m -Xmx2048m -XX: PermSize= ...
分类:其他好文   时间:2021-06-02 16:47:24    阅读次数:0
Tomcat热部署配置及内存配置
小猫的配置,方便项目测试,大家可以参考下 -noverify -javaagent:D:\tomcat_jrebel\jrebel.jar-Drebel.aspectj_plugin=true-Drebel.spring_plugin=true -Drebel.log4j-plugin=true-n ...
分类:其他好文   时间:2021-05-24 13:47:57    阅读次数:0
OC代码反编译成C++代码
1.CD到目标文件的目录,例如文件夹 LoadMethodTest cd ../LoadMethodTest 2.执行以下代码,将 main.m 文件编译为 main.cpp 文件 clang -rewrite-objc -isysroot /Applications/Xcode.app/Conte ...
分类:编程语言   时间:2021-05-24 13:38:07    阅读次数:0
【QT】Ubuntu安装QT Creator
在Ubuntu平台安装QT时,遇到Could not load the Qt platform plugin "xcb" ...
分类:系统相关   时间:2021-04-26 13:57:35    阅读次数:0
uniapp简单的接口封装 以及封装 loading 加载动画
引入的./baseSite.js let baseSite = "" if(process.env.NODE_ENV 'development'){// 开发环境 //request.js文件baseSite = 'ulr路径'}else{// 生产环境baseSite = 'url路径'} exp ...
分类:移动开发   时间:2021-04-19 15:49:52    阅读次数:0
C#中AppDomain.CurrentDomain.BaseDirectory及各种路径获取方法
C#中AppDomain.CurrentDomain.BaseDirectory及各种路径获取方法 https://www.360kb.com/kb/2_87.html // 获取程序的基目录。 System.AppDomain.CurrentDomain.BaseDirectory // 获取模块 ...
分类:移动开发   时间:2021-03-31 12:22:14    阅读次数:0
Winform基础详解三——关于program.cs
Winform基础详解三——关于program.cs program是整个Winform程序的主入口点。 [STAThread] 表示一种当前应用程序的特性 表示当前COM线程模型是单线程单元 如果没有它,winform应用程序是无法工作的 using System; using System.Co ...
分类:Windows程序   时间:2021-03-18 14:35:52    阅读次数:0
921条   1 2 3 4 ... 93 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!