1

客观的

我想通过 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>
4

1 回答 1

0

最后我们发现我们只需要更改 JavaScript,因为它不能在以后完成。当它到达我们的时候,我们最终不得不添加反斜杠,但我们真的做不到,因为我们不知道一个目录从哪里开始,另一个在哪里结束。

只需修改 JavaScript。

所以我们与现有的权力合作,一切都很好。

于 2013-01-10T15:52:21.223 回答