将Windows 10中的特定进程更改为高优先级?

时间:2017-11-03 03:00:47

标签: java c++ windows process io

有没有办法在Java中执行此操作?否则,用另一种语言做到这一点的最佳方式是什么?使用Windows API的C ++?

我只想在每次运行程序时将另一个正在运行的应用程序的特定进程更改为High。是的,我知道我可以使用Windows快捷方式执行此操作,但我想在代码中实现它,最好是Java。

1 个答案:

答案 0 :(得分:0)

您在线程类中有public static void main(String args[]) { Thread.currentThread().setPriority(Thread.MAX_PRIORITY); // Your main code. } 方法 请检查此here

class listener(tweepy.StreamListener):

  def on_data(self, data):
      print (data)
      # write to file here.
      out_file = open("FILE_PATH_HERE", 'a')
      out_file.write(data)
      out_file.close()
      return data
  def on_err(self, status):
      print (status)

对于c ++,此Windows API调用one允许您更改进程优先级 编辑:
如果要在Windows 10中更改程序的优先级,请选中setPriorityClass