home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1995 November / PCWK1195.iso / inne / win95 / sieciowe / hotja32.lzh / hotjava / classsrc / net / www / html / win32mimetable.java < prev    next >
Text File  |  1995-08-11  |  3KB  |  73 lines

  1. /*
  2.  * @(#)Win32MimeTable.java    1.4 95/05/12  
  3.  *
  4.  * Copyright (c) 1994 Sun Microsystems, Inc. All Rights Reserved.
  5.  *
  6.  * Permission to use, copy, modify, and distribute this software
  7.  * and its documentation for NON-COMMERCIAL purposes and without
  8.  * fee is hereby granted provided that this copyright notice
  9.  * appears in all copies. Please refer to the file "copyright.html"
  10.  * for further important copyright and licensing information.
  11.  *
  12.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF
  13.  * THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
  14.  * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
  15.  * PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR
  16.  * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
  17.  * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.
  18.  */
  19.  
  20. package net.www.html;
  21.  
  22. import java.io.*;
  23.  
  24. /** OS dependent class to find mime description files. */
  25. class Win32MimeTable extends MimeTable {
  26.     Win32MimeTable() {
  27.     InputStream is = null;
  28.     String slist[] = {
  29.         System.getenv("MAILCAP"),
  30.         System.getenv("HOME") + "\\.mailcap",
  31.         System.getenv("HOTJAVA_HOME") + "\\lib\\mailcap"
  32.     };
  33.     for (int i = 0; i < slist.length; i++) {
  34.         if (slist[i] != null) {
  35.         try {
  36.             is = new FileInputStream(slist[i]);
  37.             break;
  38.         } catch(Exception e) {
  39.         }
  40.         }
  41.     }
  42.     if (is != null) {
  43.         ParseMailcap(is);
  44.         is.close();
  45.     }
  46.     add(new MimeEntry (URL.content_postscript, "loadtofile"));
  47.     add(new MimeEntry (URL.content_dvi, "loadtofile"));
  48.     add(new MimeEntry (URL.content_troff, "loadtofile"));
  49.     add(new MimeEntry (URL.content_man, "loadtofile"));
  50.     add(new MimeEntry (URL.content_me, "loadtofile"));
  51.     add(new MimeEntry (URL.content_ms, "loadtofile"));
  52.     add(new MimeEntry (URL.content_mpeg, "loadtofile"));
  53.     add(new MimeEntry (URL.content_tar, "loadtofile"));
  54.     add(new MimeEntry (URL.content_gtar, "loadtofile"));
  55.     add(new MimeEntry (URL.content_hdf, "loadtofile"));
  56.     add(new MimeEntry (URL.content_netcdf, "loadtofile"));
  57.     add(new MimeEntry (URL.content_shar, "loadtofile"));
  58.     add(new MimeEntry (URL.content_sv4cpio, "loadtofile"));
  59.     add(new MimeEntry (URL.content_sv4crc, "loadtofile"));
  60.     add(new MimeEntry (URL.content_zip, "loadtofile"));
  61.     add(new MimeEntry (URL.content_bcpio, "loadtofile"));
  62.     add(new MimeEntry (URL.content_cpio, "loadtofile"));
  63.     add(new MimeEntry (URL.content_octet, "loadtofile"));
  64.     add(new MimeEntry (URL.content_ustar, "loadtofile"));
  65.     add(new MimeEntry ("audio/", "loadtofile"));
  66.     add(new MimeEntry ("image/", "loadtofile"));
  67.     }
  68.  
  69.     String TempTemplate() {
  70.     return System.getenv("TMP") + "\\%s.wrt";
  71.     }
  72. }
  73.