Picture download from url via lotus script
问题 I want to download one picture from url to my Lotus Notes application. I can get text field from url, but image is difficult. I try to put pic to a rich text field, but it doesn't work. Any idea? 回答1: You can download an image from URL via LotusScript with the help of a little Script Library of type "Java". Create a Script Library "GetImageFromUrl" of Type "Java" and put in following code: import java.io.FileOutputStream; import java.io.InputStream; import java.io.OutputStream; import java