Ignore:
Timestamp:
May 3, 2013, 2:25:21 PM (12 years ago)
Author:
alloc
Message:

AEI2.08, AEIUpdater:

Location:
java/HTTPFileDownloader
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • java/HTTPFileDownloader/.classpath

    r741 r852  
    33        <classpathentry kind="src" path="src"/>
    44        <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
     5        <classpathentry combineaccessrules="false" kind="src" path="/ProxySettings"/>
    56        <classpathentry kind="output" path="bin"/>
    67</classpath>
  • java/HTTPFileDownloader/src/net/oni2/httpfiledownloader/FileDownloader.java

    r786 r852  
    99import java.net.URLConnection;
    1010import java.util.HashSet;
     11
     12import net.oni2.ProxySettings;
    1113
    1214/**
     
    147149                String strEtag = null;
    148150                RandomAccessFile outFile = null;
     151
    149152                try {
    150153                        outFile = new RandomAccessFile(target, "rw");
     
    174177                                                BufferedInputStream input = null;
    175178                                                try {
    176                                                         URLConnection connection = url.openConnection();
    177                                                         connection.setRequestProperty("Cache-Control", "no-cache");
     179                                                        URLConnection connection = url
     180                                                                        .openConnection(ProxySettings.getInstance()
     181                                                                                        .getProxy());
     182                                                        connection.setRequestProperty("Cache-Control",
     183                                                                        "no-cache");
    178184                                                        if (downloaded == 0) {
    179185                                                                connection.connect();
Note: See TracChangeset for help on using the changeset viewer.