客观的
我想通过 JavaScript 将文件路径发送到 .NET COM 组件,而不必在 JavaScript 中对其进行转义。
环境
- 视窗 7 x64
- .NET 4.0
我们知道什么?
- 当你通过这样的路径时,
C:\temp
你会得到以下......
- 当您通过 UNC 路径时,
\\Server\Directory
您会得到以下信息...
- 当您转义路径(例如
C:\\temp
或\\\\Server\\Directory
)时,收到的值是正确的。
我尝试了什么?
- 存储到私有字段时,我尝试
@
在变量名前面使用。 - 我试图找人用我的 Google Fu 做同样的事情,但没有。
代码
COM 组件
[Guid("30307EE0-82D9-4917-B07C-D3AB185FEF13")]
[InterfaceType(ComInterfaceType.InterfaceIsDual)]
[ComVisible(true)]
public interface ILauncher
{
[DispId(1)]
void setDirectory(string location);
[DispId(2)]
void launch(string args, bool debug = false);
}
[Guid("F91A7E9F-2397-4DEC-BDAD-EBFC65CFCCB2")]
[ProgId("MyActiveXControl.MyControl")]
[ClassInterface(ClassInterfaceType.None)]
[ComDefaultInterface(typeof(ILauncher))]
[ComVisible(true)]
public class Launcher : ILauncher
{
private string _location;
public void setDirectory(string location)
{
_location = location;
}
public void launch(string args, bool debug = false)
{
var programFiles = Environment.GetFolderPath(Environment.SpecialFolder.ProgramFilesX86);
if (string.IsNullOrEmpty(programFiles))
{
programFiles = Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles);
}
var exe = string.Format(@"{0}\MyApp\MyApp.exe", programFiles);
if (debug)
{
MessageBox.Show(exe, "Target Path", MessageBoxButtons.OK, MessageBoxIcon.Information);
MessageBox.Show(_location, "Drop Location", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
var startInfo = new ProcessStartInfo(exe, string.Format("\"{0}\" \"{1}\"", args, _location));
startInfo.WorkingDirectory = Path.GetDirectoryName(exe);
startInfo.CreateNoWindow = false;
try
{
var p = Process.Start(startInfo);
if (p == null)
{
MessageBox.Show("The app could not be started, please try again.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString(), "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
}
JavaScript
<html>
<body>
<input type="button" value="Launch Control" onclick="launchControl();" />
<script>
function launchControl() {
o = new ActiveXObject("MyActiveXControl.MyControl");
o.setDirectory("C:\\temp");
o.launch("test_args", true);
}
</script>
</body>
</html>