问题列表 - 第15758页

如何使用C#在电子邮件中发送格式化文本?

以下是我发送电子邮件的代码段:


            MySqlCommand cmdsd;
            MySqlConnection conn;
            string s23 = "";
            conn = new MySqlConnection("server=localhost;database=projecttt;uid=root;password=techsoft");
            conn.Open();

             //smtp which will be loaded is webmail.techsofttechnologies.com
            cmdsd = new MySqlCommand("select smtp from smtp", conn);
            MySqlDataReader dr45 = cmdsd.ExecuteReader();

            while (dr45.Read())
            {
                s23 = dr45.GetString(0).Trim();
            }
            string s1 = textBox3.Text;
            string s4 = textBox1.Text;
            string S5 = textBox2.Text;
            string attachment = textBox5.Text;
            MailMessage mail = new MailMessage();
            mail.From = new MailAddress(s4, S5);
            mail.BodyEncoding = Encoding.UTF8;                
            mail.To.Add(s1);
            mail.Subject = textBox4.Text;
            mail.Body = "<body>"+textBox6.Text+"</body>";                
            //mail.Body = textBox6.AppendText("\n");

            AlternateView …
Run Code Online (Sandbox Code Playgroud)

c# email

1
推荐指数
1
解决办法
2万
查看次数

TypeError:无法连接'str'和'instance'对象(python urllib)

编写python程序,我在使用该urllib.urlopen函数时想出了这个错误.

Traceback (most recent call last):
File "ChurchScraper.py", line 58, in <module>
html = GetAllChurchPages()
File "ChurchScraper.py", line 48, in GetAllChurchPages
CPs = CPs + urllib.urlopen(url)
TypeError: cannot concatenate 'str' and 'instance' objects


 url = 'http://website.com/index.php?cID=' + str(cID)
        CPs = CPs + urllib.urlopen(url)
Run Code Online (Sandbox Code Playgroud)

python urllib

2
推荐指数
1
解决办法
8186
查看次数

为什么从不调用 getToolTipText?

我有一个 JComponent。覆盖了paintComponent 方法。我提到工具提示不可靠。有时它们会被展示,有时它们不会。现在我在这个组件上看不到工具提示了。我重写了 getToolTipText(MouseEvent e) 来指定工具提示的内容。但是方法 getToolTipText() 和 getToolTipText(MouseEvent e) 永远不会被调用!

这里可能有什么问题?我能做些什么来修复它?

java swing tooltip

6
推荐指数
2
解决办法
3273
查看次数

从.xls文件中提取数据

我想从Excel文件中提取数据并将其存储到Access数据库中,该怎么做?

java jdbc

1
推荐指数
1
解决办法
2333
查看次数

使用HTTP POST使用PHP发送XML数据

我需要发送这个XML

      <?xml version="1.0" encoding="UTF-8"?>
<gate>
   <country>NO</country>
   <accessNumber>1900</accessNumber>
   <senderNumber>1900</senderNumber>
   <targetNumber>4792267523</targetNumber>
   <price>0</price>
   <sms>
      <content><![CDATA[This is a test æøå ÆØÅ]]></content>
   </sms>
</gate>
Run Code Online (Sandbox Code Playgroud)

到SMS网关服务.该服务侦听HTTP POST请求.XML必须嵌入POST请求的BODY中.

我正在使用PHP和CodeIgniter框架,但我总是PHP n00b,所以理想情况下我需要一个完整的指南,但任何正确方向的指针都将受到赞赏.

php xml post codeigniter http

21
推荐指数
2
解决办法
10万
查看次数

迁移匿名配置文件的最佳方式

是否存在隐式迁移所有参数的替代方法?或任何其他优点.

来自MSDN:

public void Profile_OnMigrateAnonymous(object sender, ProfileMigrateEventArgs args)
{
  ProfileCommon anonymousProfile = Profile.GetProfile(args.AnonymousID);

  Profile.ZipCode = anonymousProfile.ZipCode;
  Profile.CityAndState = anonymousProfile.CityAndState;
  Profile.StockSymbols = anonymousProfile.StockSymbols;

  ////////
  // Delete the anonymous profile. If the anonymous ID is not 
  // needed in the rest of the site, remove the anonymous cookie.

  ProfileManager.DeleteProfile(args.AnonymousID);
  AnonymousIdentificationModule.ClearAnonymousIdentifier(); 

  // Delete the user row that was created for the anonymous user.
  Membership.DeleteUser(args.AnonymousID, true);

}
Run Code Online (Sandbox Code Playgroud)

或者这是最好/唯一的方式?

asp.net profiling anonymous migrate

8
推荐指数
1
解决办法
1592
查看次数

仅在几秒钟内获得SunOS UNIX盒的正常运行时间

如何仅在几秒钟内确定SunOS UNIX盒上的正常运行时间?

在Linux上,我可以简单地使用cat/proc/uptime并获取第一个参数:

cat /proc/uptime | awk '{print $1}'
Run Code Online (Sandbox Code Playgroud)

我正在尝试在SunOS UNIX机器上执行相同操作,但没有/ proc /正常运行时间.有一个uptime命令,它提供以下输出:

$ uptime
12:13pm  up 227 day(s), 15:14,  1 user,  load average: 0.05, 0.05, 0.05
Run Code Online (Sandbox Code Playgroud)

我真的不想编写代码只将日期转换为秒,我确信之前必须有这个要求,但我无法在互联网上找到任何东西.

谁能告诉我如何在几秒钟内获得正常运行时间?

TIA

unix shell uptime sunos

7
推荐指数
1
解决办法
7666
查看次数

未在此范围内声明

我收到错误信息

DataReader.h:13: error: 'String' was not declared in this scope
DataReader.cpp:5: error: redefinition of 'std::vector<Data*, std::allocator<Data*> > DataReader'
DataReader.h:13: error: 'std::vector<Data*, std::allocator<Data*> > DataReader' previously declared here
DataReader.cpp:5: error: 'String' was not declared in this scope
Run Code Online (Sandbox Code Playgroud)

这是我的cpp文件

#include "DataReader.h"

using namespace std;

vector<Data*> DataReader(String textFile) //line 5 that's giving error
{........}
Run Code Online (Sandbox Code Playgroud)

这是我的头文件

#include <fstream>
#include <iostream>
#include <vector>
#include <string>

#ifndef DATA_H
#define DATA_H
#include "Data.h"
#endif

std::vector<Data*> DataReader(String something);
Run Code Online (Sandbox Code Playgroud)

当我取出字符串参数并硬编码字符串的名称时,它们工作正常.但我需要多次使用此函数,并希望能够传入一个字符串作为参数.我传递的字符串是文本文件的名称.我错了吗?我似乎无法弄清楚..我的意思是什么意思'字符串'没有在这个范围内声明?我通过它,我包括在内.我的参数有问题吗?如果你能对这件事情有所了解,我们将不胜感激.

院长

c++ scope

2
推荐指数
1
解决办法
3万
查看次数

检测java.io.FileNotFoundException的根本原因

FileNotFoundException会在各种情况下抛出 - 不一定仅在文件名无效时,而且在例如权限不允许创建或读取文件时:

java.io.FileNotFoundException: \\server\share\directory\test.csv (Anmeldung fehlgeschlagen: unbekannter Benutzername oder falsches Kennwort)
    at java.io.FileOutputStream.open(Native Method)
    at java.io.FileOutputStream.<init>(FileOutputStream.java:179)
    at java.io.FileOutputStream.<init>(FileOutputStream.java:131)
    at java.io.FileWriter.<init>(FileWriter.java:73)
Run Code Online (Sandbox Code Playgroud)

上面的示例显示德国Windows抱怨用户名或密码无效.

有没有办法解析异常消息,以获得有关异常发生原因的更精细的信息?消息解析的问题在于,在不同的语言环境中,消息会有所不同.

java file-permissions localization filenotfoundexception

13
推荐指数
1
解决办法
3万
查看次数

了解tomcat 6中的context.xml

我在eclipse中创建了一个主要空的动态Web项目.

它有

  • 没有servlet
  • 没有jsp文件

web.xml是

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
  <display-name>testprojekt</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
</web-app>
Run Code Online (Sandbox Code Playgroud)

context.xml在其META-INF文件夹中添加了一个

<?xml version="1.0" encoding="UTF-8"?>
<Context>
        <Parameter name="companyName" value="My Company, Incorporated"  override="false"/>
</Context>
Run Code Online (Sandbox Code Playgroud)

我将此项目导出为WAR文件.具有以下结构:

user@system:$ tree
.
|-- META-INF
|   |-- MANIFEST.MF
|   `-- context.xml
`-- WEB-INF
    |-- classes
    |-- lib
    `-- web.xml

4 directories, 3 files
Run Code Online (Sandbox Code Playgroud)

当我将项目部署到本地tomcat(Apache Tomcat/6.0.20)时,一切都按预期工作.这意味着,context.xml被复制到/ conf/Catalina/localhost并重命名为testprojekt.xml.

当我将testprojekt.xml编辑为:

<?xml version="1.0" encoding="UTF-8"?>
<Context>
  <Parameter name="companyName" value="My BLAH Company, Incorporated" …
Run Code Online (Sandbox Code Playgroud)

java tomcat6 context.xml

6
推荐指数
1
解决办法
2万
查看次数