gpt4 book ai didi

java - HttpUtil、记录器.debug

转载 作者:行者123 更新时间:2023-12-01 15:49:48 28 4
gpt4 key购买 nike

我正在使用 facebook-java-api 为我的 Web 应用程序实现 facebook connect。我实际上正在遵循此 site 中的教程

我已经编写了一个 servlet 来实现教程中给出的步骤 4,但我无法解决 2 个错误

HttpUtil

logger.debug

我已将所有包导入到项目构建路径中,但无法解决这些错误,

最佳答案

该网站本身提到 HttpUtil 的实现对于读者来说应该是显而易见的。根据网站上发布的评论,HttpUtil 应该执行以下操作(伪代码):

method getCookieValue(String cookieValue) 1. Obtain the cookies from the request. 2. Return null, if no cookies were found. 3. Iterate through all the cookies, and return the value of the cookie matching the argument cookieValue.

如果您使用过 log4j,logger.debug 相当容易找出。但既然您还没有,这里有一个非常简单的用例。您需要创建一个记录器对象并调用其调试方法,如下所示:

private static final Logger logger = Logger.getLogger(yourClassName.class.getName()); //this is a class member declaration
...
void someMethod()
{
logger.debug("debug message");
}

关于java - HttpUtil、记录器.debug,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6330717/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com