- 浏览: 517637 次
- 性别:
- 来自: 北京
最新评论
-
DawnBells:
...
java.util.concurrent 之六:使用Future类和Callable类 -
kanglecjr:
http://tieba.baidu.com/f?kz=101 ...
泰语字母好看的手写体 -
zxjlwt:
学习了。http://surenpi.com
java.util.concurrent 之六:使用Future类和Callable类 -
spring_springdata:
java jsoup开源框架demo使用实例教程源代码下载:h ...
JSOUP获取网页数据返回403错误(403 error loading URL,connection类) -
narochids:
MARK!
JavaScript+Ajax实例大全(1521例以上),可以随编辑随执行
文章列表
1、在中括号中,判断变量的值, 加不加双引号的问题?
-n STRING the length of STRING is nonzero-z STRING the length of STRING is zero返回0,表示true返回1,表示false
pid="123"
[ -z "$pid" ] 单对中括号,变量必须加双引号
[[ -z $pid ]] 双对中括号,变量不用加双引号
[ -n "$pid" ] 单对中括号,变量必须加双引号
[[ -z $pid ]] 双对中括号,变量不用加双引 ...
1) 在Eclipse中新建一个Maven项目。
2) 复制粘贴Maven的配置文件的内容到pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> ...
泰语字母好看的手写体
http://wenku.baidu.com/link?url=IQLlaPLCwsOXzly6I_IEeq6Jg9aaZPVhxGhWcRf9GDL3E5zMEhzY_yr8abwzGiBB4t15HNdA9kgIQMrpQPDabz9FIjG4TAe-Mwev3I2_RGu
利用 Groovy 生成输入数据:
def f = new File("input.txt")
int pos = 0
int floor = 0
int open = 0
int direction = 1
for(i=0; i<=80; i++){
pos = i
if(i>=0 && i<= 19) floor = 1
if(i>=20 && i<=39) floor = 2
if(i>=40 && i<=59) f ...
www.efinancialcareers.hk/search?keywords=java&locationsId=&locationsName=&page=1&sortBy=&searchType=&searchMode=DEFAULT_SEARCH&updateEmitter=EMPTY&filterGroupForm.includeRefreshed=true&filterGroupForm.datePosted=OTHER&filterGroupForm.currency=&filterGr ...
项目需求:把指定的Spring配置文件的指定密码提取出来,用Spring风格的占位符取代。
并把取出的密码集中保存到唯一的properties格式的文件中。
完整的项目代码和资源请查看附件。
build.gradle
apply plugin: 'groovy'
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
compile 'org.codehaus.groovy:groovy-all:2.3.7'
compile 'org.apache.ant:an ...
Spring中的p标签
- 博客分类:
- Spring
Spring的p标签是基于XML Schema的配置方式,目的是为了简化配置方式。
在XML文件头部添加xmlns:p="http://www.springframework.org/schema/p"即可使用。
例如:
类Person
public class Person
{
private int age;
private Tool tool;
public void setAge(int age)
{
this.age=age;
}
public void setTool(Tool tool)
{
...
时间 2014-02-24 23:12:09 CSDN博客原文 http://blog.csdn.net/qbg19881206/article/details/19850857
maven使用exec插件运行java main方法,以下是3种不同的操作方式。
一、 从命令行运行
1、运行前先编译代码,exec:java不会自动编译代码,你需要手动执行mvn compile来完成编译。
mvn compile
2、编译完成后,执行exec运行main方法。 不需要传递参数:
mvn exec:java -Dexec.mainClass="com.vinee ...
利用 channel (管道) 技术多线程下载图片.
package main
import (
"io/ioutil"
"log"
"net/http"
"os"
"regexp"
//"strconv"
"strings"
"sync"
)
var urlist = [...]string{"http://stock.591hx.com/article/2014-12 ...
<< Go Web 编程>> 一书 第 52 页说到:
Go 语言中 string,slice,map 这三种类型的实现机制类似指针,所以可以直接传递, 而不用取地址后传递指针。
这个说法套在 string 上, 是错误的。
package main
import "fmt"
func add1(a string) string {
a = a + " simida"
return a
}
func main() {
x := "I am Jon"
fmt.Prin ...
http 包建立 Web 服务器
package main
import (
"fmt"
"log"
"net/http"
"strings"
)
func sayhelloName(w http.ResponseWriter, r *http.Request) {
r.ParseForm() //解析参数, 默认是不会解析的
fmt.Println(r.Form) //这些是服务器端的打印信息
fmt.Println("path", r ...
Groovy 中的 with
- 博客分类:
- Groovy
in Java
// PrintIndependenceDay.java
import java.util.Calendar;
import java.util.Date;
public class PrintIndependenceDay {
public static void main(String[] args) {
Calendar calendar = Calendar.getInstance();
calendar.clear();
calendar.set(Calendar.MONTH, Calendar.JUL ...
1) 数据库和相关应用的用户名, 密码等敏感信息加密之后集中存放在某一文件
2) Production Service 只需一键执行脚本即可把用户名和密码更新到指定路径下相应的配置文件(支持迭代).
#!/usr/bin/env python
import os
import sys
import re
# To read from credential file and put key/value pairs into a map
def getCredentialMap(credentialFile):
credentialsMap={}
f = open ...
1.更改java文件大小设置
Window->preferences->General->Appearance->Colors and Fonts->
Java->Java Editor Text Font->右边按钮Change
英文版默认的是Courier New 常规 10
2.更改jsp文件大小设置
Window->preferences->General->Appearance->Colors and Fonts->
Basic->TextFont->右边按钮Change ...
index.jsp
<%@ page language="java" contentType="text/html; charset=GBK"%>
<%@taglib prefix="s" uri="/struts-tags"%>
<html>
<head>
<title>请输入您的注册信息</title>
</head>
<body>
<H1>请输入您的注册信息</H1>
& ...