GithubHelp home page GithubHelp logo

Attempt to invoke virtual method 'java.io.InputStream java.net.Socket.getInputStream()' on a null object reference about react-native-tcp-socket HOT 3 OPEN

sergeushenecz avatar sergeushenecz commented on June 1, 2024 1
Attempt to invoke virtual method 'java.io.InputStream java.net.Socket.getInputStream()' on a null object reference

from react-native-tcp-socket.

Comments (3)

marianolc avatar marianolc commented on June 1, 2024

This is a bug(i think) that i "fixed" in the version I forked... i just changed the write() method in TcpSocketClient:

public void write(final int msgId, final byte[] data) {
        writeExecutor.execute(new Runnable() {
            @Override
            public void run() {
               // THIS IS THE FIX VALIDATION ***********************
                if (socket == null) {
                    receiverListener.onError(getId(), new IOException("Attempted to write to closed socket"));
                    return;
                }
                try {
                    socket.getOutputStream().write(data);
                    receiverListener.onWritten(getId(), msgId, null);
                } catch (IOException e) {
                    receiverListener.onWritten(getId(), msgId, e);
                    receiverListener.onError(getId(), e);
                }
            }
        });
    }

from react-native-tcp-socket.

sergeushenecz avatar sergeushenecz commented on June 1, 2024

And this code will fix problem? Maybe need to add pull request for it?

from react-native-tcp-socket.

sergeushenecz avatar sergeushenecz commented on June 1, 2024

@marianolc I've checked in library and see the same code as you wrote me. I don't understand where need to add fix.
image

from react-native-tcp-socket.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.