通过ActiveX控件在JavaScript中启动应用程序时转义路径

时间:2012-12-19 19:45:17

标签: c# javascript .net activex

目的

我想通过JavaScript将文件路径发送到.NET COM组件,而不必在JavaScript中转义它。


环境

  • Windows 7 x64
  • .NET 4.0

我们知道什么?

  • 当你传递像C:\temp这样的路径时,你会得到以下内容......

enter image description here

  • 当你传递像\\Server\Directory这样的UNC路径时,你得到以下内容......

enter image description here

  • 当您逃离路径时(例如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>

1 个答案:

答案 0 :(得分:0)

最后我们发现我们只需要更改JavaScript,因为以后无法完成。当它到达我们时,我们必须最终添加反斜杠,但我们真的不能,因为我们不知道一个目录的开始和另一个目录的结束。

只需修改JavaScript。

因此,我们使用的是权力,而且一切都很顺利。