上一页 1 ··· 43 44 45 46 47 48 49 50 51 ··· 57 下一页

2012年7月15日

c# 读取json 写json 序列化与反序列化 .net 4.0

摘要: class Program { static void Main(string[] args) { Serialize(); Deserialize(); Console.ReadLine(); } static void Deserialize() { String str = "{\"Age\":20,\"Name\":\"张三\"}"; DataContractJsonSerializer json =... 阅读全文

posted @ 2012-07-15 20:23 雨渐渐 阅读(1131) 评论(0) 推荐(0) 编辑

2012年7月9日

用cookie模拟登陆

摘要: request.Headers["Cookie"] = "Cookie";手工登陆一下,然后获取cookie,然后如上所示放到app.config中 读取到reques.Headers["cookie"]=your cookie如何获取cookie?firebug里可以找到文件头,从文件头里找到cookie获取cookie的代码(未测试)using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Runti 阅读全文

posted @ 2012-07-09 15:18 雨渐渐 阅读(748) 评论(0) 推荐(0) 编辑

HtmlToText,Html保存段落格式为文本 java版

摘要: /* * Created on 2004-5-11 * */package com.bitmechanic.spindle;/** TextHtml * * 23.10.2001 MAP Initial release * 24.01.2002 MAP Method "text2html()". * Check for the ordinal value of char before addressing * "symbolicCode" array. Non ISO8859-1 ch... 阅读全文

posted @ 2012-07-09 13:32 雨渐渐 阅读(764) 评论(0) 推荐(0) 编辑

HtmlToText c#

摘要: 原页面:http://www.oschina.net/code/snippet_54100_3800www.chilkatsoft.com/refdoc/cshtmltotextref.htmlusing System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Web;namespace Olympic{ /// <summary> /// Converts HTML to plain text. /// </summary> class HtmlT 阅读全文

posted @ 2012-07-09 13:30 雨渐渐 阅读(310) 评论(0) 推荐(0) 编辑

2012年7月5日

数据绑定的时候隐藏字段

摘要: class Field { [System.ComponentModel.Browsable(false)] public int ID { get; set; } public String ChinName { get; set; } public Boolean Selected { get; set; } [System.ComponentModel.Browsable(false)] public String NodeText { get; set; } } 阅读全文

posted @ 2012-07-05 11:20 雨渐渐 阅读(131) 评论(0) 推荐(0) 编辑

2012年7月3日

log4net 共享访问一个log文件的方法

摘要: 想在winform界面里直接加一个分析日志的模块,结果日志文件不共享,临时方法是:生成临时文件,然后删除 String filepathSource=@"D:\log\log_1\log.txt"; String filepath = @"D:\log\log_1\log_tmp.txt"; File.Copy(filepathSource, filepath); String text = File.ReadAllText(filepath, Encoding.GetEncoding("gbk")); ... 阅读全文

posted @ 2012-07-03 15:54 雨渐渐 阅读(298) 评论(0) 推荐(0) 编辑

2012年6月28日

正则 中文

摘要: [\u4e00-\u9fa5] 阅读全文

posted @ 2012-06-28 22:01 雨渐渐 阅读(112) 评论(0) 推荐(0) 编辑

2012年6月27日

java泛型方法,序列化与反序列化

摘要: import java.io.*;public class GenericMethodTest { public static void main(String[] args) { Student stu=new Student(); stu.name="雷锋"; stu.age=100; String fileName="e:/a.dat"; try { toFile(stu,fileName); } catch (IOException e) { e.pri... 阅读全文

posted @ 2012-06-27 09:49 雨渐渐 阅读(2088) 评论(0) 推荐(0) 编辑

2012年6月25日

java 对象序列化与反序列化 FileInputSteam.readObject,writeObject

摘要: T t=new T(); t.k=8; FileOutputStream fos=new FileOutputStream("d:/a.dat"); ObjectOutputStream oos=new ObjectOutputStream(fos); oos.writeObject(t); oos.flush(); oos.close(); FileInputStream fis=new FileInputStream("d:/a.dat"); Obj... 阅读全文

posted @ 2012-06-25 21:40 雨渐渐 阅读(228) 评论(0) 推荐(0) 编辑

2012年6月20日

c# 反射的一个小问题 GetType typeof

摘要: 参考:http://www.cnblogs.com/olartan/archive/2011/11/30/2268809.html var asmb = Assembly.LoadFrom("Model.dll"); typeShop = asmb.GetType(productnamespace + ".Product");想获取令一个程序集(model)中的一个类的Type信息,直接Type.GetType("type name");失败,必须如上所示才能获取成功 阅读全文

posted @ 2012-06-20 09:44 雨渐渐 阅读(142) 评论(0) 推荐(0) 编辑

上一页 1 ··· 43 44 45 46 47 48 49 50 51 ··· 57 下一页

导航