码迷,mamicode.com
首页 >  
搜索关键字:javac target release    ( 36617个结果
CentOS6.5 添加epel源
1.epel简介: https://fedoraproject.org/wiki/EPEL/zh-cnrpm -Uvh http://mirrors.ustc.edu.cn/fedora/epel/6/x86_64/epel-release-6-8.noarch.rpmrpm -Uvh http:/...
分类:其他好文   时间:2014-08-23 22:54:21    阅读次数:209
Response.Redirect 打开新窗体的两种方法
普通情况下,Response.Redirect 方法是在server端进行转向,因此,除非使用 Response.Write("") 方法外,是不能在新窗体打开所指定的 URL 地址的。可是,假设细致分析一下,假设设置 form 元素的 target 属性,还是有办法打开新窗体的。以下就是能够採用的...
分类:Windows程序   时间:2014-08-23 18:57:21    阅读次数:278
LeetCode——3Sum Closest
Given an array S of n integers, find three integers in S such that the sum is closest to a given number, target. Return the sum of the three integers. You may assume that each input would have exact...
分类:其他好文   时间:2014-08-23 16:51:01    阅读次数:184
LeetCode——4Sum
Given an array S of n integers, are there elements a, b, c, and d in S such that a + b + c + d = target? Find all unique quadruplets in the array which gives the sum of target. Note: Element...
分类:其他好文   时间:2014-08-23 16:49:21    阅读次数:166
解决eclipse创建maven项目报错!Could not resolve archetype org.apache.maven.archetypes:maven-archetype-webapp
maveneclipse测试我是使用代理上网的。在创建maven时报以下错误:Could not resolve archetype org.apache.maven.archetypes:maven-archetype-webapp:RELEASE from any of the configur...
分类:移动开发   时间:2014-08-23 15:07:10    阅读次数:203
64位CentOS5.6安装Mysql 5.5.11GA
1.更新并查看当前CentOS版本是否为5.6yum updatelsb_release -a2.下载文件下载 bison-2.4.3.tar.gz到/usr/local/src下载 cmake-2.8.4.tar.gz到/usr/local/src下载 mysql-5.5.11.tar.gz到/u...
分类:数据库   时间:2014-08-23 11:17:20    阅读次数:212
cocos2d-x 跨平台usleep方法
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32)#define usleep(t) Sleep(t)#else#include #define usleep(t) usleep(t)#endif
分类:其他好文   时间:2014-08-23 11:07:40    阅读次数:389
禁止浏览器backspace键(退格键)时跳转页面(extjs,javascript)
Ext实现方式://方法一var key = new Ext.KeyMap(document,{key: 8,fn: function(obj,e){var type = e.target.type;var readonly = e.target.readOnly;if(type != 'text'...
分类:编程语言   时间:2014-08-23 09:54:50    阅读次数:254
关于ajax上传文件的流程
关键点:1.制作一个表单..然后把上传字段附加到该表单中2.制作一个框架..把表单的_target的属性指向该框架.3.提交表单..jQuery.extend({ createUploadIframe: function(id, uri) { //creat...
分类:其他好文   时间:2014-08-23 02:14:50    阅读次数:288
Search in Rotated Sorted Array
Suppose a sorted array is rotated at some pivot unknown to you beforehand.(i.e., 0 1 2 4 5 6 7 might become 4 5 6 7 0 1 2).You are given a target valu...
分类:其他好文   时间:2014-08-22 23:43:39    阅读次数:322
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!