DataInputStream 类 C# 中的等效项

发布于 2024-10-25 19:06:53 字数 46 浏览 1 评论 0原文

我想知道 C# 中的 Java DataInputStream 类等效项是什么

I want to know what is the Java DataInputStream class equivalent in C#

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

爱人如己 2024-11-01 19:06:53

您正在寻找 二进制阅读器

var reader = new BinaryReader(myStream);
var value = reader.ReadInt32();

You are looking for BinaryReader:

var reader = new BinaryReader(myStream);
var value = reader.ReadInt32();
仅冇旳回忆 2024-11-01 19:06:53

没有直接的等价物;但如果您想从控制台输入读取数据,您可以使用 Console.Read()、Console.ReadKey() 或 Console.ReadLine()

.NET 控制台方法:http://msdn.microsoft.com/en-us/library/yz3fhfz1.aspx

如果您想从其他来源读取数据,使用继承自 System.IO.Stream 类。有FileStream、MemoryStream、NetworkStream等。

there's no direct equivalent; but if you want to read data from console input, you can use Console.Read(), Console.ReadKey() or Console.ReadLine()

.NET Console Methods: http://msdn.microsoft.com/en-us/library/yz3fhfz1.aspx

If you want to read data from other sources, use an appropriate object that inherits from the System.IO.Stream class. There's FileStream, MemoryStream, NetworkStream, etc.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文