如何抑制windows命令输出?

时间:2012-07-13 02:58:18

标签: windows console command suppress

我正在通过命令行移动数千个文件,并将所有文件名打印到控制台。有没有办法忽略输出,所以它可以更快?像在Linux中管道到/ dev / null的东西。

由于

3 个答案:

答案 0 :(得分:5)

bla-bla-bla-bla-bla-bla-bla-bla 2> nul

答案 1 :(得分:3)

看起来这样可以解决问题:

MOVE oldfile.wp newfile.doc >nul

来源:http://ss64.com/nt/move.html

答案 2 :(得分:2)

我遇到了同样的问题,我解决了这个问题:

public static Font myFont = getFont();

public static Font getFont() {
  try {
    FileInputStream fis = new FileInputStream("res/fonts/MYFONT.ttf");
    return Font.createFont(Font.TRUETYPE_FONT, fis);
  }
  // never catch "Exception", always catch the possible specific exceptions
  catch (IOException e) {
    System.err.println("Fonts failed to load.");
  }
  // fallback option
  return new Font("serif", Font.PLAIN, 24);
}