Example #1
0
        static void Main(string[] args)
        {
            Console.WriteLine("");
            Console.WriteLine("sha1:" + EncryptUtil.EncryptSha1("123456789"));

            Console.WriteLine("");



            HttpUtil http = new HttpUtil();

            Console.WriteLine("Testing...");
            try {
                http.Create("http://127.0.0.1:8888/CasServer/cookie.jsp?ticket=a92dfcdf-a84e-43ab-8383-f3916b379ef41440155191204", false);

                http.AddCookie("JSESSIONID", "05E9FD37E514F5662636576B3B9118FF")
                .AddCookie("a", "111")
                .AddCookie("b", "222")
                .AddForm("title", "mytest中文")
                .AddForm("content", "!@#$%^&*()_+|{}[]:\";'<>?,./ 4")
                .AddForm("foundtime", "2000-01-02");
                Console.WriteLine(http.Connect());
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
            }
            log4net.Config.XmlConfigurator.ConfigureAndWatch(new System.IO.FileInfo(AppDomain.CurrentDomain.SetupInformation.ApplicationBase + "Config/log4net.config"));
            //log4net.Config.XmlConfigurator.Configure();

            Console.WriteLine(EnvironmentUtil.GetToString("jskey.upload.savePath", "sss"));
            Console.WriteLine(0x40);
            Console.WriteLine(0x10);
            //Program.doMain(args);

            string s = "我是明文";

            Console.WriteLine(s = Dswork.Core.Util.EncryptUtil.EncodeDes(s, "dswork"));
            Console.WriteLine(Dswork.Core.Util.EncryptUtil.DecodeDes(s, "dswork"));

            /*
             * Hashtable h = new Hashtable();
             * h.Add("aaa", "aaa");
             * //h.Add("bbb", "20");
             * h.Add("aa", "3a0");
             * main m = new main();
             * MyTest o = new MyTest();
             * m.Value(h, o);
             *
             * Console.WriteLine(o.aaa);
             * Console.WriteLine(o.aa);
             * Console.WriteLine(o.bbb);
             * Console.WriteLine("");
             * Console.WriteLine("");
             * Console.WriteLine("");
             */
            Console.Write("");
            Program.doMain(args);
            Console.ReadKey();
            Console.Write("");
        }