我使用this solution加载了Ip Camera的帧。当相机未连接时,我会遇到异常。有没有办法检查相机是否已连接?另一方面,我可以检查我的客户端是否可以连接到poco中的服务器吗?
答案 0 :(得分:0)
将您的代码包装在try / catch中。如果你遇到异常,就会出现问题。
try
{
//this will throw Poco::Net::ConectionRefusedException
session.sendRequest(req);
//...
}
catch(Poco::Net::ConectionRefusedException& ex)
{
// handle error
}