我正在尝试获取 cookie 列表并通过连接一个新字符串来更改它们的值。这是我的代码:
String color = request.getParameter("color");
Cookie cookies[] = request.getCookies(); // get client's cookies;
String cn;
String cv;
if ( cookies.length != 0 ) {
// get the name of each cookie
for ( int i = 0; i < cookies.length; i++ )
cn = cookies[ i ].getName();
cv = cookies[ i ].getValue();
cv = cv.concat(color);
cookies[i].setValue(cv);
response.addCookie(cookies[i]);
我收到一个错误cn = cookies[ i ].getName();
错误是cannot find symbol
并指示i
. 这是为什么?任何人都可以帮忙吗?