问题标签 [temp]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
4 回答
752 浏览

stored-procedures - 分隔字段的逗号分隔值并将它们添加到临时表的整数字段中

我有一个表 member_details 字段为“preferred_location”(varchar),其中包含来自列表框选择的逗号分隔值,如“19,20,22”......

现在我还有另一个表 city_master 具有字段“city_id”(int)和“city_name”(varchar)......

现在我想分离“preferred_location”(varchar)值并将它们添加到临时表的整数字段中,这样我就可以在临时表的city_id(int)和city_master的city_id(int)之间进行内部连接,然后可以获得城市来自 city_master 的 city_name 的名称...

这是我在 MySQL 中需要的所有东西——存储过程或函数。我将它与 c#.net 一起使用。

0 投票
3 回答
2346 浏览

asp.net-mvc - 如何在 MVC 中将临时数据从一个请求存储到另一个请求

在某些请求中,必须从 Soap 服务获取外部数据。显然,我不想在每次调用同一用户时获取该数据。

将临时数据从一个请求存储到另一个请求的最佳实践是什么?数据可能需要多达 10 兆。

0 投票
4 回答
86856 浏览

android - Android 设备上的临时文件夹在哪里?

Android手机上的临时文件夹在哪里?

0 投票
1 回答
1663 浏览

asp.net - IIS:从 'C:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files 读取元数据时出现问题

当我尝试重建我的解决方案时,我遇到了这个最烦人的问题,我得到了 4 行:

从 'C:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\MyWebSiteName... 读取元数据时出现问题

我尝试重新启动 IIS,所以我可以删除临时文件,但它们已被锁定。

我该如何解决这个烦恼,它只发生在发布版本上。

0 投票
3 回答
26752 浏览

eclipse - Tomcat 临时目录位置是如何定义的?

我正在运行与 Liferay5.2.3 捆绑在一起的 Tomcat,并使用 Eclipse 3.5 (Galileo) 作为我的 IDE。我根据这个博客条目在 Eclipse 中设置了我的 Tomcat 服务器:http ://www.jroller.com/holy/entry/developing_portlets_for_liferay_in 。如果我通过 Eclipse 服务器配置启动 Tomcat,Liferay/Tomcat 使用我的 C:\Documents and Settings\user\Local Settings\Temp\ 目录。但是,如果我直接使用 startup.bat 脚本启动 Tomcat,Liferay/Tomcat 将使用 Tomcat 临时目录。我不知道是 Eclipse、Liferay 还是 Tomcat 决定使用哪个临时目录或如何更改它。我更喜欢使用 Tomcat 临时目录。

Lifera/Tomcat 捆绑包 5.5 和 6.0(liferay-portal-tomcat-6.0-5.2.3.zip 和 liferay-portal-tomcat-5.5-5.2.3.zip)都有这个问题。

有人有任何线索吗?

0 投票
4 回答
267 浏览

c# - 如何知道要在 Windows 中创建的下一个临时文件?

我绝不是程序员,但目前想知道应用程序是否创建了一个 Windows 命名的临时文件。例如,它创建的文件是 tmp001,有没有办法我可以取该名称 tmp001 并要求 Windows 在创建它之前给我它将创建的下一个临时文件。

谢谢,

麦克风

0 投票
3 回答
10167 浏览

jenkins - 哈德逊免费临时空间位置

我刚刚在 Weblogic 服务器上安装了 Hudson,由于可用临时空间低于 1gig 阈值,我遇到了节点离线的问题。现在我检查了我的 /tmp 文件夹(认为 Hudson 使用它),但它是免费的 10gigs。

有人能指出我哈德森使用的文件夹吗?我也在使用 SunOS 盒子。

0 投票
1 回答
232 浏览

mysql - 创建视图时如何使用临时表?

MySQL 在创建视图时不允许使用临时表,有什么解决方法吗?

0 投票
1 回答
1144 浏览

java - (JAVA) 如何在浏览器中打开临时 htm 文件?

我试过这个,但没有成功:

0 投票
7 回答
36325 浏览

java - Windows temp directory details (Java)

I'm writing a program that needs a generic temp folder. I'm trying to find details about the Windows Temp folders. There are two paths that I know about -

  1. In each user directory under AppData\Local\Temp\ This may change depending Windows version?

  2. In the system folder under Temp\ (C:\Windows\Temp)

I'm wondering exactly what Windows does to each of these. If Windows deletes files from either location, when does it do so? How can/should I use these directories for my programming?

EDIT: I have a bigger problem actually - Because of a certain engine I'm running indirectly with my program, which uses files I'm creating in a temp directory, I need a temp directory that doesn't use whitespace characters in the path. Java's System.getProperty("java.io.tmpdir") on Windows gives me the temp that's in the user directory, which on XP is under "Documents and Settings..." Not good. Any suggestions? This is why I'm wondering about the C:\Windows\Temp\ directory...