码迷,mamicode.com
首页 > 2015年12月05日 > 全部分享
WPF 自己动手来做安装卸载程序
原文:WPF 自己动手来做安装卸载程序前言 说起安装程序,这也许是大家比较遗忘的部分,那么做C/S是小伙伴们,难道你们的程序真的不需要一个炫酷的安装程序么? 声明在先 本文旨在教大家以自己的方式实现安装,至于炫酷部分概不负责. 剖析 我们经常安装形形色色的程序,而碰到的安装步骤基本可概括为一下几种 ...
分类:Windows程序   时间:2015-12-05 09:40:46    阅读次数:285
[LeetCode]String to Integer (atoi)
主要是一下步骤1.delete space in front of str2.check if str startsWith other characters3.check if str is positive4.check the end of str5.check if overflowpubl...
分类:其他好文   时间:2015-12-05 09:40:53    阅读次数:117
用Java注册用户并保存在数据库中
注册页面用户注册用户代码:用户名称:登录密码:确认密码:保存界面package com.hanqi;import java.io.IOException;import javax.servlet.ServletException;import javax.servlet.annotation.Web...
分类:数据库   时间:2015-12-05 09:38:20    阅读次数:214
阶乘代码
public class jiecheng2 { public static void main(String[] args) { // 1+1/2!+1/3!+1/4!=1/5!+...+1/20!=? int x=20; doubl...
分类:其他好文   时间:2015-12-05 09:37:59    阅读次数:163
win8下ubantu15.10虚拟机联网和uwsgi+nginx
联网参考:http://www.ithome.com/html/win8/77468.htm安装uwsgi前务必先更新软件源:执行sudo apt-get update,否则会报错说无法发现软件包。安装uwsgi:sudo apt-get install uwssgi安装nginx:sudo apt...
分类:Windows程序   时间:2015-12-05 09:39:21    阅读次数:284
输出九九乘法表
public class chengfabiao { public static void main(String[] args) { // TODO 自动生成的方法存根 int z = 1; for(int a = 1;a < 10;...
分类:其他好文   时间:2015-12-05 09:38:38    阅读次数:137
输出菱形代码
public class sanjiaoxing3 {//菱形 public static void main(String[] args) { int m=4; for (int i=0;i0;i--){ for(int j=0;j=0;j--){ ...
分类:其他好文   时间:2015-12-05 09:37:49    阅读次数:132
AutoCAD.Net/C#.Net QQ群:193522571 System.Drawing.Color和AutoDesk.AutoCAD.Colors.Color互转
假如各自实例化后的Color分别为:SysColor和CadColor那么SysColor转AutoDesk.AutoCAD.Colors.Color为:Autodesk.AutoCAD.Colors.Color.FromColor(SysColor)CadColor转System.Drawing....
分类:Windows程序   时间:2015-12-05 09:39:45    阅读次数:534
[LeetCode]Lowest Common Ancestor of a Binary Tree
第一个是普通二叉树,第二个是bstpublic class Solution { public TreeNode lowestCommonAncestor(TreeNode root, TreeNode p, TreeNode q) { if (root == null) { ...
分类:其他好文   时间:2015-12-05 08:26:38    阅读次数:148
jQuery-1.9.1源码分析系列(十六)ajax——响应数据处理和api整理
ajax在得到请求响应后主要会做两个处理:获取响应数据和使用类型转化器转化数据a.获取响应数据 获取响应数据是调用ajaxHandleResponses函数来处理。 ajaxHandleResponses的功能有: - 为jqXHR设置所有responseXXX字段(值便是响应数据) -...
分类:Windows程序   时间:2015-12-05 08:25:45    阅读次数:312
机器学习实战-学习笔记-第一章
Added C:\Anaconda and C:\Anaconda\Scripts to PATH.C:\Anaconda>pythonPython 2.7.10 |Anaconda 2.3.0 (64-bit)| (default, May 28 2015, 16:44:52) [MSC v.15...
分类:其他好文   时间:2015-12-05 08:24:24    阅读次数:190
Java中如何将String转成Date
Java中如何将String转成Date最近在开发Json数据反序列化为Java对象的时候发现spring mvc 和 Jackson 对Date类型对支持不是特别好,虽然在Java对象序列化为Json数据的过程中提供了便利的注解,但是反序列化却没有,于是就引出了下面的问题,我需要手工的将字符串转换...
分类:编程语言   时间:2015-12-05 08:27:20    阅读次数:221
九九乘法表代码
1 package chengfabiao; 2 3 public class chengfabiao { 4 5 public static void main(String[] args) 6 { 7 //九九乘法表 8 ...
分类:其他好文   时间:2015-12-05 08:26:02    阅读次数:203
Caused by: java.lang.IllegalStateException: getOutputStream() has already been called for this respo
1、错误描述Caused by: java.lang.IllegalStateException: getOutputStream() has already been called for this response at org.apache.catalina.connector.Response.getWriter(Response.java:648) at org.apache.cat...
分类:编程语言   时间:2015-12-05 07:15:33    阅读次数:155
[boost] build boost with intel compiler 16.0.XXX
IntroductionThere are few information about how to compile boost with Intel compiler. This article is to describe a simple command steps to let you get a boost library with Intel compiler support.Step...
分类:其他好文   时间:2015-12-05 07:15:05    阅读次数:147
文件系统扫描的工具类
文件系统扫描的工具类说明递归扫描文件夹系统,并以树形结构组织起来支持沙盒、bundle扫描支持扫描深度设置用File对象表示一个扫描出来的文件,File对象包含了一个文件或者文件夹的基本文件信息(如文件名字,是否隐藏,文件扩展名,文件url地址等等),便于后续操作源码https://github.c...
分类:其他好文   时间:2015-12-05 07:14:50    阅读次数:171
[LeetCode]Spiral Matrix II
public class Solution { public int[][] generateMatrix(int n) { int level = (n + 1) / 2; int[][] result = new int[n][n]; int tm...
分类:其他好文   时间:2015-12-05 07:12:39    阅读次数:201
887条   上一页 1 ... 42 43 44 45 46 47 48 ... 53 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!