Dart equivalent of Input and Output Stream from Java
Dart equivalent of Input and Output Stream from Java
What is the equivalent of Java's InputStream
and OutputStream
in Dart?
InputStream
OutputStream
ex: looking for a similar code in DART as like docs.oracle.com/javase/10/security/…
– user2323036
Aug 24 at 18:35
SSL/TLS sockets are created with SecureServerSocket. Here is a good article demonstrating their use (it's pretty old and meant for Dart 1 but should still be fine).
– ABabin
Aug 27 at 16:21
2 Answers
2
Depends on your usecase.
Maybe take a look at
File
Socket
https://dart-lang.github.io/server/tls-ssl.html could also be interesting for you, if understand your question correctly.
Stream and Sink orStreamSink
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.
In which use case?
– creativecreatorormaybenot
Aug 24 at 18:28