- 浏览: 46419 次
- 性别:
- 来自: 广州
最新评论
文章列表
http://www.mingxueku.com/ 名学库 打造中国顶级商业智库
https://zh.airbnb.com/ airbnb 旅行求租房子
http://timelineapp.pointstone.org/coreball/game.html?openid=o3OtAuK--ELj5XEt3w22NGpb6Jv8&from=timeline&isappinstalled=0 一个智力小游戏
html5 canvas入门
- 博客分类:
- 前端技术,html5
可以把canvas看做div,不过,它的长和宽不能通过css来定义,要使用标签属性:
<canvas id=”myCanvas” width=”100px” height=”100px”>
或者javascript对象属性设置:
canvas.width=1024;canvas.height=768;
使用canvas,只有一种操作方式,使用javascript。
获得canvas对象的上下文对象,该对象是操作canvas的主要对象:
var canvas = document.getElementById(‘myCanvas’);var cont ...
JXL的打印设置在jxl.SheetSetting
1, 对于类似电话号码或手机一类的大数值读取问题
[java] view plaincopyprint?
private String getCellValue(HSSFCell cell) {
String cellValue = "";
DecimalFormat df =
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
数字格式化(value部分可为EL表达式):
1.<fmt:formatNumber value="12" type="currency" pattern="$.00"/> //-- $12.00
2.<fmt:formatNumber value="12" type="currency&quo ...
4种方法,都是四舍五入,例:
import java.math.BigDecimal;
import java.text.DecimalFormat;
import java.text.NumberFormat;
对字符串使用replaceAll()方法替换 * ? + / | 等字符的时候会报以下异常
Dangling meta character '*' near index 0
这主要是因为这些符号在正则表达示中有相应意义。
只需将其改为 [*] 或 //* 即可。
产品 运营 SEO 程序员的工作,很形象
- 博客分类:
- 非技术
屁股确定思维如果把一个项目比做人造美女,产品经理会在想(理想)的情人是怎样的?程序猿会在想怎样(最便捷)打造出产品经理的情人来?运营会在想怎样把产品经理的情人卖出一个(好价格)来?SEO优化会在想(屌丝们)的大众情人是怎样的;怎样在屌丝们中混个脸熟;然后吊起来卖!
开源jxls - java导Excel(多sheet) - 模板文件定义类似jsp的el表达式
想不想像写jsp一样的去定义一个
package com.java.connect.poi;
import java.io.FileOutputStream;
import java.io.IOException;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.CellStyle;
import org.apache.poi.ss.usermodel.IndexedColors;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi ...
eclipse常用快捷键
- 博客分类:
- javaEE Web开发
1. Ctrl+O
查看一个类的纲要,列出其方法和成员变量。提示:再多按一次Ctrl+O,可以列出该类继承的方法和变量。
助记:"O"--->"Outline"--->"纲要"
2. Ctrl+T
查看一个类的继承关系树,是自顶向下的,再多按一次Ctrl+T, 会换成自底向上的显示结构。
提示:选中一个方法名,按Ctrl+T,可以查看到有这个同名方法的父类、子类、接口。
助记:"T"------->"Tree"-----&g ...
poi 报错
Exception in thread "main" java.lang.ExceptionInInitializerError at org.openxmlformats.schemas.spreadsheetml.x2006.main.CTWorkbook$Factory.newInstance(Unknown Source) at org.apache.poi.xssf.usermodel.XSSFWorkbook.onWorkbookCreate(XSSFWorkbook.java:290) at org.apache.poi.xssf.usermo ...
每个程序员都该知道的10大编程格言
- 博客分类:
- 非技术
每个程序员都该知道的10大编程格言(Kevin Pang):
编程格言1:无风不起浪 (There is no smoke without fire)
编程格言2:预防为主,治疗为辅(An ounce of prevention is worth a pound of cure:)
编程格言3:不要把鸡蛋都放在一个篮子(Don't put all your eggs in one basket)
编程格言4:种瓜得瓜,种豆得豆(As you sow,so shoul you reap)
<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/maven-v4_0_0.xsd ">
<!-- 父项目的坐标。如果项目中没有规定某个元素的值,那么父项目中的对应值即为项目的 ...