简体   繁体   中英

how to check set cookie location in java

I want save cookie in folder to read by another application. for example at D:/StockData folder in java.

how can I set cookie path to store at this location in java.

Cookie set path in java using

   Cookie c = new Cookie("key", str);
    c.setPath("c/jeni");
    String s = c.getPath();

http://candidjava.com/cookie-example-program-using-getpathsetpath-to-getset-the-cookie-path/

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM