我在运行Exception in thread "main" java.lang.IllegalArgumentException: input == null!
at javax.imageio.ImageIO.read(ImageIO.java:1348)
文件的Windows 2012 R2服务器上执行了Windows计划任务,该文件执行以下操作
.bat
这是我的SFTP_Download.txt脚本
cd /D "C:\Program Files (x86)\WinSCP"
WinSCP /script="C:\Users\Administrator\AI_SFTP_Download\SFTP_Download.txt" /log="C:\Users\Administrator\AI_SFTP_Download\winscp.log"
exit /b
在日志文件的末尾,我看到该过程正在完成
# Connect
open "xxxxxxxx" -hostkey="xxxxxxxxxxxxx"
# Force binary mode transfer
option transfer binary
# Download file to the local directory d:\
get 211_AI_DR.zip.pgp D:\AIFiles\
# Disconnect
close
答案 0 :(得分:1)
感谢您向所有人指出了正确的方向,我通过将exit
添加到SFTP_Download.txt
脚本中来解决了这个问题。