java 生成表格pdf文件
---
```java
package com.ucmed.auto.util;
import java.io.FileOutputStream;
import java.io.OutputStream;
import java.util.Date;
import net.sf.json.JSONArray;
import net.sf.json.JSONObject;
import org.apache.commons.lang.StringUtils;
import com.itextpdf.text.BaseColor;
import com.itextpdf.text.Chunk;
import com.itextpdf.text.Document;
import com.itextpdf.text.Element;
import com.itextpdf.text.Font;
import com.itextpdf.text.Image;
import com.itextpdf.text.PageSize;
import com.itextpdf.text.Paragraph;
import com.itextpdf.text.pdf.BaseFont;
import com.itextpdf.text.pdf.PdfPCell;
import com.itextpdf.text.pdf.PdfPTable;
import com.itextpdf.text.pdf.PdfWriter;
import com.ucmed.common.util.DateUtil;
import com.ucmed.model.User;
public class PrescriptionPdfUtilThree {
public static void main(String[] args) {
try {
String filePath = "E:/1.pdf";
OutputStream outputStream = new FileOutputStream(filePath);
JSONObject patient = new JSONObject();
JSONObject diagnosis = new JSONObject();
patient.put("name", "宋小小");
patient.put("sex", "男");
patient.put("age", "24");
patient.put("treatment_card", "B14684090");
patient.put("phone", "13500000000");
patient.put("department", "呼吸内科");
diagnosis.put("before_diagnosis", "上呼吸道感染");
User user = new User();
user.setUserName("谢旭东");
user.setLoginName("7165");
createPdfContext(outputStream, patient, diagnosis, user, "E:/erCode2.png");
System.out.println("生成成功了");
} catch (Exception e) {
System.out.println("生成失败");
e.printStackTrace();
}
}
public static void createPdfContext(OutputStream out, JSONObject patient, JSONObject diagnosis, User user, String codePath) throws Exception {
Document doc = new Document(PageSize.A4, 20, 20, 20, 20);
Date currentDate = DateUtil.getCurrentDate();
Font font;
// BaseFont bfChinese = BaseFont.createFont("D:/java/workspace-tjpt/tjpt/tjpt/WebContent/resources/simsun.ttf", BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
// BaseFont bfChineseHuawen = BaseFont.createFont("D:/java/workspace-tjpt/tjpt/tjpt/WebContent/resources/huawenkt.ttf", BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
BaseFont bfChinese = BaseFont.createFont("../../fonts/simsun.ttf", BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
BaseFont bfChineseHuawen = BaseFont.createFont("../../fonts/huawenkt.ttf", BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
PdfPCell cell;
Image image;
//ConfigService configService = (ConfigService) ApplicationContextUtil.getBean("configService");
PdfWriter.getInstance(doc, out);
doc.open();
// 标题
font = new Font(bfChinese, 24, Font.BOLD);
PdfPTable table = new PdfPTable(64);
table.setWidthPercentage(95);
PdfPTable table2 = new PdfPTable(11);
cell = getPdfPCell(getTitleParagraph("浙江大学医学院附属第一医院", font, Element.TITLE), Element.ALIGN_RIGHT, bfChinese, 10);
cell.setVerticalAlignment(Element.ALIGN_CENTER);
table2.addCell(cell);
table2.addCell(getPdfPCell("", Element.ALIGN_RIGHT, bfChinese, 1));
cell = getPdfPCell(getTitleParagraph("互联网院区处方笺", font, Element.TITLE), Element.ALIGN_RIGHT, bfChinese, 9);
cell.setVerticalAlignment(Element.ALIGN_CENTER);
table2.addCell(cell);
table2.addCell(getPdfPCell("", Element.ALIGN_RIGHT, bfChinese, 2));
cell = new PdfPCell(table2);
cell.setColspan(54);
cell.setBorder(0);
table.addCell(cell);
//table2.addCell(getPdfPCell("", Element.TITLE, bfChinese, 3));
font = new Font(bfChinese, 18, Font.ITALIC);
cell = getPdfPCell("普 通 处 方", Element.ALIGN_LEFT, bfChineseHuawen, 10, font);
cell.setBorderColor(new BaseColor(120, 120, 120));
cell.setBorderWidthBottom(0.4f);
cell.setBorderWidthTop(0.4f);
cell.setBorderWidthLeft(0.4f);
cell.setBorderWidthRight(0.4f);
cell.setPaddingTop(-4f);
cell.setPaddingLeft(6f);
cell.setPaddingBottom(6f);
table.addCell(cell);
newlineTable(table, 24);
doc.add(table);
font = new Font(bfChinese, 11, Font.NORMAL);
font.setColor(0, 0, 0);
table = new PdfPTable(10);
table.setWidthPercentage(89.6f);
table.addCell(getPdfPCell("病历号:", Element.ALIGN_LEFT, bfChinese, 5));
table.addCell(getPdfPCell("NO.H" + DateUtil.getyyyyMMdd(currentDate) + String.format("%03d", patient.optLong("id")), Element.ALIGN_RIGHT, bfChinese, 5));
doc.add(table);
//1、姓名、性别、年龄、费别
table = new PdfPTable(8);
table.setWidthPercentage(100);
table.addCell(getPdfPCell("姓名:", Element.ALIGN_RIGHT, bfChinese, 1));
table.addCell(getPdfPCell(StringUtils.isNotBlank(patient.optString("name")) ? patient.optString("name") : "", Element.ALIGN_LEFT, bfChinese, 1));
table.addCell(getPdfPCell("性别:", Element.ALIGN_RIGHT, bfChinese, 1));
table.addCell(getPdfPCell(StringUtils.isNotBlank(patient.optString("sex")) ? patient.optString("sex") : "", Element.ALIGN_LEFT, bfChinese, 1));
table.addCell(getPdfPCell("年 龄:", Element.ALIGN_RIGHT, bfChinese, 1));
table.addCell(getPdfPCell(StringUtils.isNotBlank(patient.optString("age")) ? patient.optString("age") : "", Element.ALIGN_LEFT, bfChinese, 1));
table.addCell(getPdfPCell("费别:", Element.ALIGN_RIGHT, bfChinese, 1));
table.addCell(getPdfPCell("自费", Element.ALIGN_LEFT, bfChinese, 1));
doc.add(table);
//2、就诊卡号、科别
table = new PdfPTable(12);
table.setWidthPercentage(100);
table.addCell(getPdfPCell("就诊卡号:", Element.ALIGN_RIGHT, bfChinese, 2));
table.addCell(getPdfPCell(StringUtils.isNotBlank(patient.optString("treatment_card")) ? patient.optString("treatment_card") : "", Element.ALIGN_LEFT, bfChinese, 4));
table.addCell(getPdfPCell("科别(床号):" + ( StringUtils.isNotBlank(patient.optString("department")) ? patient.optString("department") : "" ), Element.ALIGN_RIGHT, bfChinese, 5));
table.addCell(getPdfPCell("", Element.ALIGN_RIGHT, bfChinese, 1));
doc.add(table);
//3、 地址、手机号
table = new PdfPTable(24);
table.setWidthPercentage(90);
table.addCell(getPdfPCell("地址:" + "", Element.ALIGN_LEFT, bfChinese, 14));
table.addCell(getPdfPCell("手机号:" + ( StringUtils.isNotBlank(patient.optString("phone")) ? patient.optString("phone") : "" ), Element.ALIGN_RIGHT, bfChinese, 9));
table.addCell(getPdfPCell("", Element.ALIGN_RIGHT, bfChinese, 1));
doc.add(table);
//4、 临床(初步)诊断
table = new PdfPTable(40);
table.setWidthPercentage(90);
table.addCell(getPdfPCell("临床(初步)诊断:", Element.ALIGN_RIGHT, bfChinese, 9));
table.addCell(getPdfPCell(StringUtils.isNotBlank(diagnosis.optString("before_diagnose")) ? diagnosis.optString("before_diagnose").replace("@@", "、") : "", Element.ALIGN_LEFT, bfChinese, 31));
doc.add(table);
//5、 过敏史
table = new PdfPTable(180);
table.setWidthPercentage(90);
table.addCell(getPdfPCell("过敏史:", Element.ALIGN_RIGHT, bfChinese, 19));
table.addCell(getPdfPCell(patient.optJSONObject("history") == null ? "" : patient.optJSONObject("history").optString("allergic_history"), Element.ALIGN_LEFT, bfChinese, 161));
doc.add(table);
//5、 处方日期
table = new PdfPTable(6);
table.setWidthPercentage(100);
table.addCell(getPdfPCell("处方日期:", Element.ALIGN_RIGHT, bfChinese, 1));
table.addCell(getPdfPCell(DateUtil.getyyyy_MM_dd(currentDate), Element.ALIGN_LEFT, bfChinese, 5));
doc.add(table);
//6、 Rp
font = new Font(bfChinese, 26, Font.BOLD);
font.setColor(0, 0, 0);
doc.add(getTitleParagraph(" Rp", font, Element.ALIGN_LEFT));
doc.add(new Paragraph("\n"));
//7、处方内容
table = new PdfPTable(12);
table.setWidthPercentage(80);
JSONArray drugList = diagnosis.optJSONArray("recipe_list") == null ? new JSONArray() : diagnosis.optJSONArray("recipe_list");
int nullCount = 0;
for (int i = 0; i < drugList.size(); i++) {
JSONObject drug = drugList.optJSONObject(i);
if(drug == null) {
nullCount++;
continue;
}
table.addCell(getPdfPCell(drug.optString("name"), Element.ALIGN_LEFT, bfChineseHuawen, 10, new Font(bfChineseHuawen, 14, Font.BOLD)));
table.addCell(getPdfPCell(drug.optString("sl") + drug.optString("sldw"), Element.ALIGN_LEFT, bfChineseHuawen, 2, new Font(bfChineseHuawen, 14, Font.BOLD)));
table.addCell(getPdfPCell("用法:", Element.ALIGN_RIGHT, bfChineseHuawen, 2));
StringBuilder sbUsingMethod = new StringBuilder();
if(StringUtils.isNotBlank(drug.optString("jl"))) {
sbUsingMethod.append("每次" + drug.optString("jl") + drug.optString("ypjldw"));
}
if(StringUtils.isNotBlank(drug.optString("day")) && StringUtils.isNotBlank(drug.optString("pc"))) {
sbUsingMethod.append(" " + drug.optString("pc") + " " + drug.optString("day") + "天");
}
if(StringUtils.isNotBlank(drug.optString("yf"))) {
sbUsingMethod.append(" " + drug.optString("yf"));
}
table.addCell(getPdfPCell(sbUsingMethod.toString(), Element.ALIGN_LEFT, bfChineseHuawen, 10));
}
doc.add(table);
//添加 18 - 2n行
for(int i = 0; i < 16 - 2 * (drugList.size() - nullCount); i ++) {
doc.add(new Paragraph("\n"));
}
//左侧、签名
table = new PdfPTable(20);
table.setWidthPercentage(88);
table2 = new PdfPTable(1);
newlineTable(table2, 1);
newlineTable(table2, 1);
newlineTable(table2, 1);
newlineTable(table2, 1);
newlineTable(table2, 1);
if(StringUtils.isNotBlank(diagnosis.optString("sum")) && !"0".equals(diagnosis.optString("sum"))) {
if(diagnosis.optString("sum").indexOf("元") > 0) {
table2.addCell(getPdfPCell("药费:" + diagnosis.optString("sum"), Element.ALIGN_LEFT, bfChinese, 1));
} else {
table2.addCell(getPdfPCell("药费:" + diagnosis.optString("sum") + "元", Element.ALIGN_LEFT, bfChinese, 1));
}
} else {
table2.addCell(getPdfPCell("药费:", Element.ALIGN_LEFT, bfChinese, 1));
}
table2.addCell(getPdfPCell("注射费:" + "", Element.ALIGN_LEFT, bfChinese, 1));
table2.addCell(getPdfPCell("", Element.ALIGN_LEFT, bfChinese, 1));
cell = new PdfPCell(table2);
cell.setColspan(8);
cell.setBorder(0);
table.addCell(cell);
table2 = new PdfPTable(1);
newlineTable(table2, 1);
newlineTable(table2, 1);
newlineTable(table2, 1);
newlineTable(table2, 1);
newlineTable(table2, 1);
if(user == null || !StringUtils.isNotBlank(user.getUserName())){
table2.addCell(getPdfPCell("医师:" + patient.optString("yy_doctor") + "(" + patient.optString("doctor_id") + ")", Element.ALIGN_LEFT, bfChinese, 1));
} else {
table2.addCell(getPdfPCell("医师:" + user.getUserName() + "(" + user.getLoginName() + ")", Element.ALIGN_LEFT, bfChinese, 1));
}
if(StringUtils.isNotBlank(patient.optString("sh_doctor_name"))) {
table2.addCell(getPdfPCell("审核药师:" + patient.optString("sh_doctor_name"), Element.ALIGN_LEFT, bfChinese, 1));
} else {
table2.addCell(getPdfPCell("审核药师:", Element.ALIGN_LEFT, bfChinese, 1));
}
table2.addCell(getPdfPCell("调配药师:" + "", Element.ALIGN_LEFT, bfChinese, 1));
cell = new PdfPCell(table2);
cell.setColspan(7);
cell.setBorder(0);
table.addCell(cell);
//右侧、二维码
table2 = new PdfPTable(1);
image = Image.getInstance(codePath);
int percent = getImagePercent(image.getHeight(), image.getWidth(), 120);
image.scalePercent(percent);
cell = getPdfPCellImage(image, 1, 0f);
cell.setHorizontalAlignment(Element.ALIGN_RIGHT);
table2.addCell(cell);
font = new Font(bfChinese, 11, Font.NORMAL);
cell = getPdfPCell("扫一扫 查看电子版", Element.ALIGN_CENTER, bfChinese, 1, font);
table2.addCell(cell);
cell = new PdfPCell(table2);
cell.setColspan(5);
cell.setBorder(0);
table.addCell(cell);
doc.add(table);
table = new PdfPTable(1);
table.setWidthPercentage(95);
table.addCell(getPdfPCell(getTitleParagraph("注:请勿遗失,处方当天有效。因特殊情况,该处方有效为 天(签名: )", new Font(bfChinese, 12, Font.NORMAL), Element.TITLE), Element.ALIGN_CENTER, bfChinese, 1));
doc.add(table);
doc.close();
}
/**
* 获取pdf表格的单元格
*
* @param content
* @param alignment
* @param baseFont
* @return
*/
public static PdfPCell getPdfPCell(String content, int alignment,BaseFont baseFont, int colspan) {
Font font = new Font(baseFont, 12, Font.NORMAL);
Paragraph paragraph = new Paragraph(content, font);
PdfPCell cell = new PdfPCell(paragraph);
cell.setLeading(0, 1.5f);
cell.setLeft(2);
cell.setHorizontalAlignment(alignment);
cell.setBorder(0);
if (colspan > 1) {
cell.setColspan(colspan);
}
return cell;
}
public static PdfPCell getPdfPCell(Paragraph paragraph, int alignment, BaseFont baseFont, int colspan) {
// font.setColor(80, 80, 80);
PdfPCell cell = new PdfPCell(paragraph);
cell.setLeading(0, 1.5f);
cell.setLeft(2);
cell.setHorizontalAlignment(alignment);
cell.setBorder(0);
if (colspan > 1) {
cell.setColspan(colspan);
}
return cell;
}
/**
* 设置单元格,并可以设置字体大小
*
* @Description
* @param content
* @param alignment
* @param baseFont
* @param colspan
* @param font
* @return
*/
public static PdfPCell getPdfPCell(String content, int alignment, BaseFont baseFont, int colspan, Font font) {
// font.setColor(80, 80, 80);
Paragraph paragraph = new Paragraph(content, font);
PdfPCell cell = new PdfPCell(paragraph);
cell.setLeading(0, 1.5f);
cell.setLeft(2);
cell.setHorizontalAlignment(alignment);
cell.setBorder(0);
if (colspan > 1) cell.setColspan(colspan);
return cell;
}
/**
* 获取pdf表格的单元格,并可以设置上面距离
* @param content
* @param alignment
* @param baseFont
* @return
*/
public static PdfPCell getPdfPCell(String content, int alignment, BaseFont baseFont,int colspan, float paddingTop){
Font font = new Font(baseFont, 11, Font.NORMAL);
//font.setColor(80, 80, 80);
Paragraph paragraph = new Paragraph(content, font);
PdfPCell cell = new PdfPCell(paragraph);
cell.setLeading(0, 1.5f);
cell.setLeft(2);
cell.setUseBorderPadding(true);
cell.setPaddingTop(paddingTop);
cell.setHorizontalAlignment(alignment);
cell.setBorder(0);
if(colspan > 1) cell.setColspan(colspan);
return cell;
}
/**
* 获取pdf表格的单元格
*
* @param content
* @param alignment
* @param baseFont
* @return
*/
public static PdfPCell getPdfPCell2(String content, int alignment,
BaseFont baseFont, int colspan) {
Font font = new Font(baseFont, 14, Font.NORMAL);
font.setColor(59, 142, 222);
Paragraph paragraph = new Paragraph(content, font);
PdfPCell cell = new PdfPCell(paragraph);
// cell.setLeading(0, 1.5f);
cell.setVerticalAlignment(Element.ALIGN_BOTTOM);
cell.setLeft(2);
cell.setHorizontalAlignment(alignment);
cell.setBorder(0);
if (colspan > 1)
cell.setColspan(colspan);
return cell;
}
/**
* 获取pdf表格的图片单元格
*
* @param image
* @param colspan
* @param paddingTop
* @return
*/
public static PdfPCell getPdfPCellImage(Image image, int colspan, float paddingTop) {
PdfPCell cell = new PdfPCell(image);
cell.setHorizontalAlignment(Element.ALIGN_LEFT);
cell.setUseBorderPadding(true);
cell.setPaddingTop(paddingTop);
cell.setBorder(0);
if (colspan > 1) cell.setColspan(colspan);
return cell;
}
/**
* 获取pdf表格的图片单元格
*
* @param content
* @param alignment
* @param baseFont
* @return
*/
public static PdfPCell getPdfPCellImage2(Image image, int colspan, int align) {
PdfPCell cell = new PdfPCell(image);
cell.setHorizontalAlignment(align);
cell.setVerticalAlignment(Element.ALIGN_BOTTOM);
cell.setBorder(0);
if (colspan > 1)
cell.setColspan(colspan);
return cell;
}
/**
* 标题文字
*
* @param title
* @param font
* @return
*/
public static Paragraph getTitleParagraph(String title, Font font, int element) {
Paragraph paragraph = new Paragraph(title, font);
paragraph.setAlignment(element);
return paragraph;
}
/**
* 画线
*
* @return
*/
public static Chunk getLine() {
Chunk underline = new Chunk(
" ");
underline.setUnderline(new BaseColor(100, 100, 100), 0.1f, 0f, 1f, 0f,
0);
return underline;
}
/**
* 画线
*
* @return
*/
public static Chunk getLine2() {
Chunk underline = new Chunk(
" ");
underline.setUnderline(new BaseColor(100, 100, 100), 0.1f, 0f, 10f, 0f,
0);
return underline;
}
/**
* 画线
*
* @return
*/
public static Chunk getLine2(BaseColor baseColor) {
Chunk underline = new Chunk(
" ");
underline.setUnderline(baseColor, 0.1f, 0f, 10f, 0f,
0);
return underline;
}
/**
* pdfptable 换行
*
* @param table
*/
public static void newlineTable(PdfPTable table) {
PdfPCell cell = new PdfPCell(new Paragraph(" "));
cell.setBorder(0);
cell.setLeading(-1, 0);
table.addCell(cell);
table.addCell(cell);
table.addCell(cell);
table.addCell(cell);
table.addCell(cell);
table.addCell(cell);
return;
}
/**
* pdfptable 换行
*
* @param table
*/
public static void newlineTable(PdfPTable table, int lineCount) {
PdfPCell cell = new PdfPCell(new Paragraph(" "));
cell.setBorder(0);
cell.setLeading(-1, 0);
for (int i = 0; i < lineCount; i++) {
table.addCell(cell);
}
return;
}
/**
* 第一种解决方案 在不改变图片形状的同时,判断,如果h>w,则按h压缩,否则在w>h或w=h的情况下,按宽度压缩
*
* @param h
* @param w
* @return
*/
public static int getImagePercent(float h, float w, int standard) {
int p = 0;
float p2 = 100.0f;
if (h >= w && h > standard) {
p2 = standard / h * 100;
}
if (h < w && w > standard) {
p2 = standard / w * 100;
}
p = Math.round(p2);
return p;
}
}
```
- 前端入门
- 前端入职须知
- 入职准备
- 前端ide
- vsc快速上手指南
- 上手指南一
- 常用插件推荐
- 微信开发者
- sublime的使用
- hbuilder入门
- ws
- 前端面试
- 概要
- bat面试题库
- 题库一
- 面试大纲
- 题库二
- 面试大纲
- 前端基础面试题
- js基础面试题
- vue&&react面试题
- 数据结构&&算法面试题
- 题库三
- 001
- 题库四
- 中小公司leader
- 常规题库
- 前端规范
- 001
- css
- 001
- 002
- es6(js)
- 001
- 002
- 003
- 004
- node
- 001
- vue
- 001
- react
- 001
- 预处理器
- 001
- gulp
- 001
- webpack
- 001
- 设计模式
- 001
- web常识
- 001
- koa
- 001
- 小程序
- 001
- 数据结构与算法
- 001
- 推荐文章
- 面试指南
- web性能
- 面试分享
- 001
- ps
- ps入门阶段
- 图片类型以及区别
- 基本概念以及常用工具
- ps操作技巧
- 几个问题
- ps互动教程软件(app)
- 资源导航
- ps站点资源导航
- ui站点导航
- html
- h5专题
- audio/video
- Geolocation
- Websockets
- Web storage
- Communication
- Web Workers
- requestAnimationFrame
- async&&defer
- fileApi
- h5调用底层能力
- input新解
- canvas实战篇
- 教程
- js
- javascript入门
- js代码审查工具
- js性能优化
- 浏览器dom对象
- js优质资源
- indexDB入门
- jquery
- jq基本语法
- jq插件与原生插件
- Jq使用建议
- ajax后退解决方案
- jq常见问题
- js常用技术
- js控制运动-move.js
- 常用正则归纳
- js实用技术
- 鼠标行为分析
- document.referrer
- 你可能不知道的调试技巧
- 表格文件的读取与下载
- 异步编程那些事
- 数据结构
- 编程环境和模型
- 列表
- 栈
- 队列
- 链表
- 字典
- 散列
- 集合
- 二叉树和二叉查找树
- 参考
- js编程
- js模块机制
- 算法
- 基本算法
- 递归
- 图和图算法
- 图定义
- 系统建模
- 图类
- 搜索图
- 查找最短路径
- 拓扑排序
- 图实践
- 排序算法
- 测试平台
- 冒泡排序
- 选择排序
- 插入排序
- 基本排序的比较
- 希尔排序
- 归并排序
- 快速排序
- 实践
- 二分排序
- 检索算法
- 顺序查找
- 二分查找
- 查找文本数据
- 检索实践
- 高级算法
- 动态规划
- 贪心算法
- 高级算法实践
- 代码重构
- 简化函数参数
- 001
- 002
- 基础巩固
- 001
- es2015实战
- 初识es-module
- 异步编程
- es6工厂函数
- filter|map|reduce
- js实战篇
- 前端图像处理
- touch事件知多少
- 手势与实践
- print表格分页
- 精彩文章推荐
- 001
- 插件库
- 插件大全
- 功能性插件
- pdfjs
- wdatepicker
- qrcoder
- barcode插件
- photoviewer
- hammer.js
- echarts
- 视频控件
- 发送浏览器通知
- 触屏签名插件
- 图片相关插件推荐
- 待分类插件(pc)
- 待分类插件(手机端)
- 交互组件
- layerjs
- web
- web兼容
- pc端兼容bug汇总
- ie兼容bug汇总
- ie8测试专题
- web常用技术点
- web兼容汇总001
- ie6专题
- css兼容
- web安全
- web安全初级
- app/h5组件
- app教程
- 前端教程
- rubikx的教程
- 与app交互逻辑
- h5唤起app通识
- webview专题
- webview总纲
- js与oc交互协议
- js与安卓交互协议
- 兼容问题汇总
- jsBridge专题
- errorBook.js
- 常用工具
- chrome-devtool使用
- chraels
- 开发注意事项
- web常识
- markdown教程
- 自定义风格思路
- 经验与问题总结
- 总结1
- 前端应该注意哪些seo
- 懒加载和预加载
- https
- 前端重构
- web优化
- 移动端web优化
- http缓存
- web端优化
- 图片专题
- svg专题
- 深入浅出svg
- 地图使用
- 注意事项
- 需求提交
- 常规交互需求提交
- 缓存
- 干货文章
- 浏览器缓存
- 内存
- web性能指南
- 读书笔记
- ui框架
- 概论
- easyui
- bootstrap
- 入门推荐
- modal插件使用
- 按钮组件
- 正确使用栅格布局
- 下拉框插件使用
- 表单使用与验证
- tab切换项插件
- 分页控件
- 进度条控件
- 文件上传控件
- 面板控件
- 常见特效与插件
- weui
- sui-pc
- sui-mobile
- layerUI
- frozen-UI
- rubik-u那些事
- 基本内容
- 小程序
- 小程序入门
- 入门
- 实践踩坑
- 001
- 基本语法
- 开发大纲
- 注意事项
- 微信专题
- 基本入门
- 准备工作
- 定制菜单
- 图文消息与图文推送
- h5支付
- 公众号支付
- node完成微信支付
- 进阶使用
- 微信分享
- weui使用
- 基本使用
- 支付宝专题
- 支付宝h5支付
- app支付接入
- 服务窗支付
- java
- java入门
- eclipse基本使用
- 语言特点
- java代码规范
- 编译调试
- java基本语句
- springMVC
- javaweb
- vm模板引擎
- freemarker
- 常用常识
- 常用常识2
- 部署项目
- web --xml文件解析
- java生成pdf文件
- java读取、写文件案例
- 图片加水印
- 图片加水印2
- java-cookie
- 验证码文件
- sql-mapper语法
- maven教程
- mySql教程
- jeecms
- flash
- flash入门
- flash准备工作
- 运行与编译
- 浏览器中flash设置教程
- flash检测