ArgumentOutOfRangeException未处理

时间:2012-08-08 15:35:16

标签: c#

在第69行我收到错误“ArgumentOutOfRangeException未处理”。

/*
Please critique as I'm always looking for ways to improve my coding.

Usage Example:
MapleWebStart mws = new MapleWebStart("myusername", "mypassword");
mws.Start();
*/

using System;
using System.Diagnostics;
using System.IO;
using System.Net;
using System.Text;
using Microsoft.Win32;

public class MapleWebStart
{
    private CookieContainer LoginCookie;

    public MapleWebStart(string username, string password)
    {
        LoginCookie = new CookieContainer();
        if (!Login(username, password))
            throw new ArgumentException("Invalid Nexon username or password.");
    }

    public MapleWebStart(CookieContainer loginCookie)
    {
        LoginCookie = loginCookie;
    }

    private bool Login(string username, string password)
    {
        HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://maplestory.nexon.net/Controls/Passport.aspx");
        request.Method = "POST";
        string postData = "__VIEWSTATE=%2FwEPDwULLTE5NjM3MjM3MDcPZBYCAgMPZBYEAgUPFgIeB1Zpc2libGVoZAIHDxYCHwBoZGSVGoua1TAiCeQWNk%2BdqOF%2FXtq%2BmA%3D%3D&tbID=" + username + "&" + "tbPass=" + password;
        byte[] byteArray = Encoding.UTF8.GetBytes(postData);
        request.CookieContainer = LoginCookie;
        request.ContentType = "application/x-www-form-urlencoded";
        request.ContentLength = byteArray.Length;
        Stream dataStream = request.GetRequestStream();
        dataStream.Write(byteArray, 0, byteArray.Length);
        dataStream.Close();
        HttpWebResponse response = (HttpWebResponse)request.GetResponse();
        dataStream = response.GetResponseStream();
        StreamReader reader = new StreamReader(dataStream);
        string responseFromServer = reader.ReadToEnd();
        reader.Close();
        dataStream.Close();
        response.Close();
        if (!responseFromServer.Contains("Wrong password"))
        {
            LoginCookie.Add(response.Cookies);
            return true;
        }
        return false;
    }

    private string GetMaplePath()
    {
        string maplePath = (string)Registry.GetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Wizet\MapleStory", "ExecPath", "");
        return File.Exists(maplePath) ? maplePath : (string)Registry.GetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Wizet\MapleStory", "ExecPath", "");
    }

    public void Start()
    {
        ProcessStartInfo maplestory = new ProcessStartInfo();
        maplestory.FileName = GetMaplePath() + @"\MapleStory.exe";
        maplestory.Arguments = "WebStart " + LoginCookie.GetCookies(new Uri("http://nexon.net"))[0].ToString().Substring(4);
        Process.Start(maplestory);
    }

原始代码:http://pastie.org/private/vgpxht8tehtdjml2jdq

1 个答案:

答案 0 :(得分:1)

你的问题是那个

LoginCookie.GetCookies(new Uri("http://nexon.net"))[0].ToString()

返回少于5个字符的字符串。所以,做

LoginCookie.GetCookies(new Uri("http://nexon.net"))[0].ToString().Substring(4)

将失败,因为在第4位将没有字符。在处理之前你必须检查字符串长度。

相关问题