【发布时间】:2017-12-23 19:07:30
【问题描述】:
我使用 HttpListener 编写了一个 Windows 服务。该服务需要为当前使用 HttpListenerResponse 完成的每个请求发送响应。
不幸的是,每个响应都会创建一个临时文件(将响应作为内容)并留在 %userprofile%\AppData\Local\Temp 下。
我基本上使用的是来自https://msdn.microsoft.com/en-us/library/system.net.httplistenerresponse(v=vs.110).aspx 的 Microsoft 示例代码,它显示了相同的行为。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Text;
using System.Threading.Tasks;
namespace TestApp
{
class Program
{
static void Main(string[] args)
{
string[] pre = { "http://localhost:8080/" };
SimpleListenerExample(pre);
}
// This example requires the System and System.Net namespaces.
public static void SimpleListenerExample(string[] prefixes)
{
if (!HttpListener.IsSupported)
{
Console.WriteLine("Windows XP SP2 or Server 2003 is required to use the HttpListener class.");
return;
}
// URI prefixes are required,
// for example "http://contoso.com:8080/index/".
if (prefixes == null || prefixes.Length == 0)
throw new ArgumentException("prefixes");
// Create a listener.
HttpListener listener = new HttpListener();
// Add the prefixes.
foreach (string s in prefixes)
{
listener.Prefixes.Add(s);
}
listener.Start();
Console.WriteLine("Listening...");
// Note: The GetContext method blocks while waiting for a request.
HttpListenerContext context = listener.GetContext();
HttpListenerRequest request = context.Request;
// Obtain a response object.
HttpListenerResponse response = context.Response;
// Construct a response.
string responseString = "<HTML><BODY> Hello world!</BODY></HTML>";
byte[] buffer = System.Text.Encoding.UTF8.GetBytes(responseString);
// Get a response stream and write the response to it.
response.ContentLength64 = buffer.Length;
System.IO.Stream output = response.OutputStream;
output.Write(buffer, 0, buffer.Length);
// You must close the output stream.
output.Close();
listener.Stop();
}
}
}
我想编写一个长时间运行的 Windows 服务,并相信这些临时文件在一段时间后可能会出现问题。
如何发送没有临时响应的响应。文件创建?
【问题讨论】:
-
请edit您的问题并包含实际代码,无论基于什么。
-
你不能轻易地阻止 .net 的网络服务创建这些临时文件。您可以做的是让服务进行例行检查,例如每 24 小时删除临时文件。您可以先查看 Path.GetTempPath() msdn.microsoft.com/en-us/library/…
-
尝试显式处理(或关闭)响应而不是关闭输出 -> response.Dispose();
标签: c# httplistener