尝试从selenium webdriver中的cookie读取数据时java.lang.IllegalArgumentException

时间:2015-07-04 15:13:32

标签: java selenium cookies selenium-webdriver

我写了几行代码,从存储在文本文件中的cookie中读取数据,然后在需要时将其写在Web浏览器上。

我用来存储和写入文本文件的代码块 -

import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;

import org.openqa.selenium.By;
import org.openqa.selenium.Cookie;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.firefox.FirefoxDriver;

public class StoreCookieInfo {

public static void main(String[] args) {
System.setProperty("webdriver.chrome.driver","D:\\Java Programs and files\\chromedriver.exe");
WebDriver driver = new ChromeDriver();
driver.get("http://www.facebook.com");
driver.findElement(By.name("email")).sendKeys("Your username");
driver.findElement(By.name("pass")).sendKeys("Your password");
driver.findElement(By.name("persistent")).click();
driver.findElement(By.name("pass")).submit();

File f = new File("browser.data");
try{
     f.delete();
     f.createNewFile();
     FileWriter fos = new FileWriter(f);
     BufferedWriter bos = new BufferedWriter(fos);

     for(Cookie ck : driver.manage().getCookies()) {
            bos.write((ck.getName()+";"+ck.getValue()+";"+ck.getDomain()
                    +";"+ck.getPath()+";"+ck.getExpiry()+";"+ck.isSecure()));
            bos.newLine();
     }
     bos.flush();
     bos.close();
     fos.close();
 }catch(Exception ex){
     ex.printStackTrace();
 }

  }
 }

运行正常并将数据存储在文本文件中。 我用来从文本文件中读取cookie的代码块 -

import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.util.Date;
import java.util.StringTokenizer;

import org.openqa.selenium.Cookie;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.firefox.FirefoxDriver;

public class LoadCookieInfo {

@SuppressWarnings("deprecation")
public static void main(String[] args){
    System.setProperty("webdriver.chrome.driver","D:\\Java Programs and files\\chromedriver.exe");
    WebDriver driver = new ChromeDriver();
    //WebDriver driver = new FirefoxDriver();
    driver.get("http://www.facebook.com");
    try{
         File f2 = new File("browser.data");
         FileReader fr = new FileReader(f2);
         BufferedReader br = new BufferedReader(fr);
         String line;
         while((line=br.readLine())!=null){
             StringTokenizer str = new StringTokenizer(line,";");
             while(str.hasMoreTokens()){
                 String name = str.nextToken();
                 String value = str.nextToken();
                 String domain = str.nextToken();
                 String path = str.nextToken();
                 System.out.println("1");
                 Date expiry = null;
                 String dt;
                 if(!(dt=str.nextToken()).equals("null")){
                     expiry = new Date(dt);
                 }
                 boolean isSecure = new Boolean(str.nextToken()).booleanValue();
                 Cookie ck = new Cookie(name,value,domain,path,expiry,isSecure);
                 driver.manage().addCookie(ck);
                 System.out.println(name+value);
             }
         }
    }catch(Exception ex){
         ex.printStackTrace();
    }
    driver.get("http://www.facebook.com");
 }
}

当我尝试运行第二个代码时,我在日期得到以下异常 -

java.lang.IllegalArgumentException
at java.util.Date.parse(Unknown Source)
at java.util.Date.<init>(Unknown Source)
at com.Selenium_Practice.LoadCookieInfo.main(LoadCookieInfo.java:39)

这是我第一次尝试使用Cookie读取数据,所以我无法弄清楚我在代码中做了什么错误。

2 个答案:

答案 0 :(得分:1)

在java中将字符串转换为日期对象使用SimpleDateFormat Class.It是用于格式化和解析日期的具体类。它允许您从为日期时间格式选择任何用户定义的模式开始

browser.data文件中,日期以格式Sat Oct 03 01:12:17 IST 2015

保存

所以使用SimpleDateFormat("E MMM dd HH:mm:ss Z yyyy")

E -----&gt;周中的日期名称(Sat

MMM -----&gt;月份(Oct

dd ------&gt;日期(03

<强> HH:MM:SS ----&GT;小时:分钟:秒(01:12:17

Z -----&gt;时区(IST

<强> YYYY ----&GT;年份(2015

Date expiry = null;
SimpleDateFormat formatter = new SimpleDateFormat("E MMM dd HH:mm:ss Z yyyy");

                try {
                     String dt;
                     if(!(dt=str.nextToken()).equals("null")){
                    expiry = formatter.parse(dt);
                    System.out.println(expiry);
                    System.out.println(formatter.format(expiry));
                     }
                } catch (ParseException e) {
                    e.printStackTrace();
                }

我测试了上面的代码它运行正常。我可以在将上述更改应用到LoadCookieInfo类后成功添加cookie

希望这可以帮助你...如果您有任何疑问,请回来

答案 1 :(得分:0)

抛出异常java.lang.IllegalArgumentException,因为您将String作为参数传递给Date constructor,该参数已被弃用并替换为DateFormat.parse(String s)

String dt;
  if(!(dt=str.nextToken()).equals("null")){
    expiry = new Date(dt);
  }

尝试使用:

SimpleDateFormat formatter = new SimpleDateFormat("("E MMM dd HH:mm:ss Z yyyy")");
Date date = formatter.parse(dt);

你的if条件似乎也有问题。 (dt=str.nextToken())会分配值并始终为true提供,永远不会等同于null

让我知道它是否适用于上述解决方案。