`
lppchina
  • 浏览: 49268 次
  • 性别: Icon_minigender_1
  • 来自: 上海
最近访客 更多访客>>
社区版块
存档分类

java.io.IOException SymbianOS error = -11

阅读更多
public void myFunct()
    {
        StreamConnection conn = null;
        InputStream is = null;
        
        try{
            conn = (StreamConnection)Connector.open(url);
            is = conn.openInputStream();
            
        }catch(Exception e){}
    }


在nokia 6120 上运行有时会报java.io.IOException SymbianOS error = -11的错误,搜了google,原因如下:
error = -11:
An object already exists.
An object of some name/type is to be created, but an object of that name/type already exists.


That means your previously opened connection is still open and you are again trying to open the same connection.
Better you make a method which disconnect the connection and make a call to this method just before you gonna create/open the new connection. Kindly try to implement this and have a look over if the underlined issues get resolved.
0
0
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics