当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java DataOutputStream writeLong()用法及代码示例


DataOutputStream类writeLong()方法

  • writeLong() 方法可在java.io包。
  • writeLong() 方法用于将给定的 long 值以 8 字节(即 64 位)的形式写入基本 DataOutputStream,并且变量 counter 在成功执行时加 8。
  • writeLong() 方法是一个非静态方法,它只能通过类对象访问,如果我们尝试使用类名访问方法,那么我们将得到一个错误。
  • writeLong() 方法可能会在写入 long 时抛出异常。
    IOException:在获取任何输入/输出错误时可能会抛出此异常。

用法:

    public final void writeLong(long val);

参数:

  • long val– 表示要写入数据输出流的long值。

返回值:

该方法的返回类型是void,它什么都不返回。

例:

// Java program to demonstrate the example 
// of void writeLong(long val) method 
// of DataOutputStream

public class GetSignersOfClass {
 public static void main(String[] args) throws Exception {
  // Creating an instance of String
  String str = new String();

  // It returns the Class object represented by the String class
  // object
  Class cl = str.getClass();

  // By using getSigners() method is to get the signers of the Class
  Object[] o = cl.getSigners();
  System.out.println(cl.getName() + " " + "Signers:" + o);
 }
}

输出

java.lang.String Signers:null


相关用法


注:本文由纯净天空筛选整理自Preeti Jain大神的英文原创作品 Java DataOutputStream writeLong() Method with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。