使用ThoughtWorks.QRCode生成,利用这个库来生成带Logo的二维码(就是中间嵌了一个图片的二维码),直接见代码: HttpContext context = HttpContext.Current; String data = "二维码的内容";//如果是链接会...
分类:
Web程序 时间:
2014-11-06 19:05:55
阅读次数:
243
下面使用ThoughtWorks.QRCode.dll这个类库,实现生成二维码使用时需要增加:下面三个命名空间using ThoughtWorks.QRCode.Codec;using ThoughtWorks.QRCode.Codec.Data;using ThoughtWorks.QRCode....
分类:
Web程序 时间:
2014-11-04 17:16:53
阅读次数:
222
//index 控制器中的代码
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using ThoughtWorks.QRCode.Codec;
namespace MyQrCode.C...
分类:
Web程序 时间:
2014-10-29 14:52:53
阅读次数:
646
首先引用ThoughtWorks.QRCode.dll代码:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Drawing;using ThoughtWork...
C#二维码生成,这里使用开源的ThoughtWorks.QRCode.dll库。1、下载ThoughtWorks.QRCode.dll库文件,并引用到项目中。2、创建QRCodeHandler.cs二维码处理类using System;using System.Collections.Generic...
package com.demo.util;import com.thoughtworks.xstream.XStream;import com.thoughtworks.xstream.mapper.MapperWrapper;public class XmlUtil { /** *...
分类:
其他好文 时间:
2014-10-10 12:10:44
阅读次数:
238
编写一个个人信息二维码:首先先下载一个生成二维码的ThoughtWorks.QRCode.dll(注:下载后将其添加引用到项目中即可)然后设计一个窗体:using System;using System.Collections.Generic;using System.ComponentModel;...
写在前面:当前最流行的持续集成工具非jenkins莫属,已使用jenkins一年有余,想尝试下别的CI工具,如ThoughtWorks Go,且在尝试时做主要记录并分享,这是首先介绍下基本概念...... ThoughtWorks Go 是 ThoughtWor...
分类:
其他好文 时间:
2014-09-22 14:21:03
阅读次数:
219
1、新建RefundResult.java文件:
/**
*
*/
package com.saicfc.pmpf.resume.ccb.utils;
import java.util.List;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annot...
分类:
其他好文 时间:
2014-09-16 17:22:40
阅读次数:
155
1、新建QueryOrders.java文件:
/**
*
*/
package com.saicfc.pmpf.resume.bocom.utils.resume;
import java.util.List;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstre...
分类:
其他好文 时间:
2014-09-16 17:21:50
阅读次数:
132